.MODEL SMALL
.STACK 100H
.DATA
LOICHAO DB 'Hello world! $'
.CODE
MAIN PROC
MOV AX, @DATA
MOV DS,AX ;Kich hoat thanh ghi DS
MOV AH,09H
LEA DX,LOICHAO
INT 21H
MOV AH,4CH
INT 21H
MAIN ENDP
END MAIN
Hướng dẫn về sử dụng Vim cơ bản
Vim là một trình editor được sử dụng rộng rãi ở các hệ điều hành nhân Unix như Linux hay mac. Nó được viết bởi Bram Moolennaar dựa trên các mã nguồn mở và được phát hành lần đầu vào năm 1991. Nó được thiết kế để sử dụng có command-line để viết code, và gần như người viết không còn sử dụng đến chuột máy tính(Hãy quên nó đi là vừa). Vim hổ trọ cho rất nhiều ngôn ngữ lập trình phổ biến.
Link download WINXP/7/8/8.1 - Office 2003/2007/2010/2013 original Fshare.vn, 4share.vn
Tổng hợp link tải về WINXP/7/8/8.1- Office 2003/2007/2010/2013 NGUYÊN GỐC Fshare.vn, 4share.vn Link download WINXP/7/8/8.1 - Office 2003/2007/2010/2013 original Fshare.vn, 4share.vn
Những việc cần làm sau khi cài đặt kali linux-Things to do after installing Kali Linux
Kali linux là hệ điều hành chứa những bộ công cụ cực kì hữu dụng cho việc penetration testing, nhiều bạn mới làm quen với backtrack/kali cảm thấy bỡ ngỡ và mong muốn làm sao để nó có thể trở thành một hệ điều hành chính có thể thay thế windows để tiện cho việc học tập giải trí và nghiên cứu hacking, dưới đây mình tổng hợp một số phần mềm cần thiết và cách cài sau khi cài đặt kali, hi vọng sẽ giúp ích cho các bạn.
Chọn windows là hệ điều hành mặc định khi khởi động thay vì ubuntu/linux(dual boot) Set windows is default when starting
Nhiều bạn khi cài song song windows/ linux thì mặc định linux sẽ được boot trước, nếu muốn khởi động vào windows thì phải chọn ở trên bàn phím, việc làm này làm mất thời gian của nhiều bạn vốn chỉ xem linux là hdh để vooc và windows vẫn là hdh chính sử dụng, hướng dẫn sau sẽ giúp bạn đặt windows là hdh mặc định khi khởi động.
Thứ Tư, 24 tháng 12, 2014
Mình liệt kê 20 điều mà mình thấy cần thiết giúp các bạn có thể sử dụng kali như một OS bình thường với đầy đủ các tiện ích học tập, giải trí.
1. Chỉnh sửa sources.list
2. Install Software center
3. Install Mozilla firefox
4. Install Adobe Flash Player
5. Install Virtual Box
6. Install Skype
7. Install Teamviewer
8. Install ibus-unikey(bộ gõ Tiếng Việt)
9. Add and remove standard user(non-root)
10. Setup and configure vpn in kali linux
11. Install AptonCD - Create a backup of all the packages you have installed using apt-get
12. Fix Database not connected or cache not built, using slow search" error in Metasploit
13. Install java JDK 7
14. Install Jdownloader
15.1 How to hide show/hide all desktop icons on kali linux
15.2 How to auto hide bottom panel
16. Install pinta images editor(Trình chỉnh sửa ảnh nhỏ gọn như pain trong windows)
17. Install and run Google Chrome as root user
18. Installer for Microsoft TrueType core fonts(Add Aria, Times New Roman, Verdana,...etc font)
19. Install sopcast player (Phần mềm không thể thiếu dành cho các bạn yêu bóng đá)
20. Install & Run Nessus Vulnerability Scanner
1. Chỉnh sửa sources.list
Sau khi cài đặt kali, một điều làm mọi người phiền lòng là tốc độ mà nó update dữ liệu từ máy chủ quá chậm, để khắc phục điều này, các bạn mở sources.list bằng lệnh
Mã:
leafpad /etc/apt/sources.list
Tiếp theo các bạn thay thế nội dung trong đó bằng đoạn text sau:
## Kali Regular repositories
deb http://repo.kali.org/kali kali main non-free contrib
deb http://security.kali.org/kali-security kali/updates main contrib non-free
## Kali Source repositories
deb-src http://repo.kali.org/kali kali main non-free contrib
deb-src http://security.kali.org/kali-security kali/updates main contrib non-free
Nếu bạn không thấy sự cải thiện thì có thể dùng đoạn text sau để thay thế, nó sẽ sửa server update sang Anh, bình thường server update là của tung của rất hay bị mất kết nối :(
## Kali Regular repositories
deb http://ftp.hands.com/kali kali main non-free contrib
deb http://ftp.hands.com/kali-security kali/updates main contrib non-free
## Kali Source repositories
deb-src http://ftp.hands.com/kali kali main non-free contrib
deb-src http://ftp.hands.com/kali-security kali/updates main contrib non-free
Để thay thế nhiều server khác nhau, vui lòng đọc bài viết này
http://www.blackmoreops.com/2013/11/14/c...nt-mirror/
Sau khi update và upgrade xong, các bạn thay thế nội dung trong file soures.list lại bằng sources mặc định sau:
## Kali Regular repositories
deb http://http.kali.org/kali kali main non-free contrib
deb http://security.kali.org/kali-security kali/updates main contrib non-free
## Kali Source repositories
deb-src http://http.kali.org/kali kali main non-free contrib
deb-src http://security.kali.org/kali-security kali/updates main contrib non-free
Lí do là vì sources mặc định này sẽ cập nhật các bản/công cụ từ nhà sản xuất sớm hơn so với các server khác, ví dụ chẳng hạn như server mặc định này có bản vá lỗi của metaploit flamework trong khi các server khác thì chưa có.
2. Install Software center
apt-get update
apt-get upgrade
apt-get install software-center
3. Install Mozilla firefox
apt-get remove iceweasel
echo -e "\ndeb http://downloads.sourceforge.net/project/ubuntuzilla/mozilla/apt all main" | tee -a /etc/apt/sources.list > /dev/null
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com C1289A29
apt-get update
apt-get install firefox-mozilla-build
4. Install Adobe Flash Player
4.1 Download Adobe Flash Player at http://get.adobe.com/flashplayer/?promoid=JZEFT
4.2 Type the command lines follow:
cd /root/Downloads/
tar xzvf [file name of Adobe Flash Player], example:
tar xzvf install_flash_player_11_linux.i386.tar.gz
cp libflashplayer.so /usr/lib/mozilla/plugins/
5. Install Virtual Box
5.1 Download Virtual Box at https://www.virtualbox.org/wiki/Linux_Downloads
5.2 Type the command lines follow:
apt-get update && apt-get install -y linux-headers-$(uname -r)
cd /root/Downloads/
dpkg -i [file name Virtual Box], example:
dpkg -i virtualbox-4.3_4.3.12-93733~Debian~wheezy_i386.deb
6. Install Skype
6.1 Download skype at http://www.skype.com/en/download-skype/s...-computer/
6.2 Type the command lines follow:
cd /root/Downloads/
dpkg -i skype-debian_4.2.0.13-1_i386.deb
7. Install Teamviewer
7.1 Download Teamviewer at http://download.teamviewer.com/download/..._linux.deb
7.2 Type the command lines follow:
cd /root/Downloads/
dpkg -i teamviewer_linux.deb
8. Install ibus-unikey(bộ gõ Tiếng Việt)
apt-get install ibus im-switch
apt-get install ibus-unikey
# logout and re-login
ibus-setup # add input methods you want
9. Add and remove standard user(non-root)
Add:
useradd -m user1 //replace user1 with your desired user name
Now set password for this user:
passwd user1
Add user to sudo group (to allow user to install software, allow printing, use privileged mode etc.) :
usermod -a -G sudo user1
Change default shell of previously created user to bash :
chsh -s /bin/bash user1
Nice, all worked out as expected.
Let’s logout and login back as our new Standard Non-root user (user1)
Login as new user:
Become root!:
sudo su –
Delete user in Kali Linux:
Log in as root user again. Open your terminal and type:
userdel –r user1
You can replace user1 with your desired user name.
I have an error “user1 is currently used by process 5866”.
Don't worry, fix it by terminal type:
kill -9 5866
Now let’s try to delete the user again.
userdel –r user1
Just to confirm everything for user1 was deleted list files in home directory
ls /home
Want to double-check?
su user1
Perfect user1 was deleted successfully.
10. Setup and configure vpn in kali linux
apt-get install network-manager-openvpn
apt-get install network-manager-openvpn-gnome
apt-get install network-manager-pptp
apt-get install network-manager-pptp-gnome
apt-get install network-manager-strongswan
apt-get install network-manager-vpnc
apt-get install network-manager-vpnc-gnome
/etc/init.d/network-manager restart
11. Install AptonCD - Create a backup of all the packages you have installed using apt-get
apt-get install aptoncd
12. Fix Database not connected or cache not built, using slow search" error in Metasploit
service postgresql start
#/etc/init.d/postgresql start
service metasploit start
#/etc/init.d/metasploit start
apt-get update
apt-get upgrade
One more thing... If you want postgreSQL and Metasploit services to auto start whenever you boot into Backtrack or Kali, you can issue the following commands on the root terminal:
update-rc.d postgresql enable
update-rc.d metasploit enable
13. Install java JDK 7
13.1 Download the latest Java SE SDK version at http://www.oracle.com/technetwork/java/j...80260.html
Các bạn lưu file download vào thư mục /root
13.2 UnTar the Archive and move to /opt
tar -xzvf /root/jdk-7u45-linux-x64.tar.gz
mv jdk1.7.0_45 /opt
cd /opt/jdk1.7.0_45
14.3 Install and register binaries
update-alternatives --install /usr/bin/java java /opt/jdk1.7.0_45/bin/java 1
update-alternatives --install /usr/bin/javac javac /opt/jdk1.7.0_45/bin/javac 1
update-alternatives --install /usr/lib/mozilla/plugins/libjavaplugin.so mozilla-javaplugin.so /opt/jdk1.7.0_45/jre/lib/amd64/libnpjp2.so 1
update-alternatives --set java /opt/jdk1.7.0_45/bin/java
update-alternatives --set javac /opt/jdk1.7.0_45/bin/javac
update-alternatives --set mozilla-javaplugin.so /opt/jdk1.7.0_45/jre/lib/amd64/libnpjp2.so
13.4 Test
First of all, close your browser and re-open, access to http://www.java.com/en/download/installed.jsp
java -version
Lưu ý bản java SE JDK mới nhất là bản 8, lệnh thì tương tự nhưng các bạn phải sửa một số đường dẫn đến các file sao cho phù hợp, các bạn tùy cơ ứng biến nhé :)
14. Install Jdownloader
14.1 Download jdownloader as http://jdownloader.org/
14.2 Install:
chmod +x jd_unix_0_9.sh && ./jd_unix_0_9.sh
15.1 How to hide show/hide all desktop icons on kali linux
Open your terminal and type:
gsettings set org.gnome.desktop.background show-desktop-icons false
15.2 How to auto hide bottom panel
Access to applications/System tools/deconf Editor/org/gnome/gnome-panel/layout/toplevels/bottom-panel, check auto hide
16. Install pinta images editor(Trình chỉnh sửa ảnh nhỏ gọn như pain trong windows)
apt-get install pinta
Trên linux thì có trình chỉnh sửa ảnh GIMP, được ví như photoshop thứ 2, cài đặt bằng lệnh
apt-get install gimp
17. Install and run Google Chrome as root user
17.1 Download Google Chrome at http://www.google.com.vn/intl/vi/chrome/browser/
17.2 Install by the command lines:
cd /root/Downloads/
dpkg -i google-chrome-stable_current_i386.deb
leafpad /opt/google/chrome/google-chrome
exec -a "$0" "$HERE/chrome" "$@"
exec -a "$0" "$HERE/chrome" "$@" --user-data-dir ”/root/.config/google-chrome”
Enjoy! Now open google chrome from Application>>Internet>>Google Chrome
18. Installer for Microsoft TrueType core fonts(Add Aria, Times New Roman, Verdana,...etc font)
apt-get install ttf-mscorefonts-installer
19. Install sopcast player (Phần mềm không thể thiếu dành cho các bạn yêu bóng đá)
Đầu tiên các bạn tải sp-auth tại đây
Tiếp theo cài đặt nó bằng lệnh
cd /root/Downloads/
dpkg -i sp-auth_3.2.6~ppa1~precise3_i386.deb
apt-get -f install
Cài đặt nó bằng lệnh
dpkg -i sopcast-player_0.8.5~ppa~precise1_i386.deb
apt-get -f install
Ok, vậy là công việc cài đặt đã hoàn tất, giờ bạn chỉ việc khởi động nó ở Applications => Sound & Videos =>Sopcast Player là đã có thể thưởng thức bóng đá và các chương trình tv, thể thao khác,v..v...
Lưu ý là link sopcast các bạn phải tự add bằng tay chứ nó không tự động chạy như trong windows đâu.
20. Install & Run Nessus Vulnerability Scanner
20.1 Download Nessus is here http://www.tenable.com/products/nessus/s...ing-system, bản mới nhất là 5.2.7
20.2 Cài đặt nó:
cd /root/Downloads/
dpkg -i Nessus-5.2.7-debian6_i386.deb
20.3 Khởi chạy:
-Tiếp theo các bạn mở trình duyệt web và truy cập đến địa chỉ https://host name:8834, nếu trong quá trình cài đặt kali bạn không thay đổi thì nó là https://kali:8834
-Nhấn tiếp tục nếu xuất hiện cảnh báo
-Chọn Tiếp Get started
-Nhập vào mật khẩu và tài khoản đăng nhập nessus, chọn next
-Ở bước này, nessus sẽ yêu cầu bạn nhập activation code, bạn truy cập vào đây, chọn bản nessus home, điền email để nhận code
-Sau khi điền code, Tiếp tục chọn Next==>Download Plugins, chờ một lát(cũng khá lâu ) để nó download và initializing các plugins cần thiết.
-Tiếp theo, màn hình đăng nhập của nessus xuất hiện, bạn nhập tài khoản và mật khẩu để đăng nhập
ok, susscess!