Posts

Showing posts with the label cool

Some of the cool vim tricks and tips

Image
Some of the cool vim tricks and tips I use vim everyday. So much that even to write notes I use vim! Here are some of the awesome tricks I have come across: 1.  Suppose you have opened a file for which you dont have permission. While saving it will say " E212: Cant open file for writing ". Now instead of saving this temporarily in another file and then saving in this file, you can do this: :w !sudo tee % 2.  You can edit binary files like in  hexedit   :%!xxd 3. Easy  diff  between two files. Say there are two files a and b. To find the diff of a with respect to b :vert diffs b 4. See command history q: 5. Execute command while still in vim. :! <command> Here I am compiling and running cpp file without closing it. 6.  Autocomplete  whatever you are typing in insert mode based on the words you have typed before: Ctrl+n 7.  Directory Listing  without  NERDTree :vsp %:h 8.  Indenting code =<next position> For example,...

SOME COOL CUSTOM MAPS

Image
SOME COOL CUSTOM MAPS Maybe you havent noticed, because there are so many links on the left bar, tab called "Maps" . Ive put some interesting maps on that page and I will add some more on request or suggestion. So far Ive put some great micro, tower and party maps and Im waiting your suggestions because I am not very familiar with custom maps. The point of this is to introduce these legendary maps to players who never tried them before and will definitely like them. download file now

Some cool Google Dork

Some cool Google Dork Symlink dork. Code: inurl:/sym/root/ & intext:"Parent Directory" c99shell dork. Code: inurl:(shell.php | c99.php) Encoder Bind Proc. FTP brute Sec. SQL PHP-code Feedback Self remove Logout c99shell dork(2). Code: inurl:(shell.php | c99.php) intitle:c99shell Encoder Bind Proc. FTP brute Sec. SQL PHP-code Feedback Self remove Logout WordPress MySQL details. Code: inurl:(wp-config.conf | wp-config.txt) ext:(conf | txt | config) Databases username && passwords. Code: inurl:/includes/ & ext:inc & inurl:connect | inurl:dbconnect & -site:phpkode.com Phish The Phisher Code: filetype:txt & intext:"email=" & intext:"pass=" & intext:"charset_test=" phpmyadmin exploit Code: allinurl:index.php?db=information_schema Here is list of other google dork. Download here. download file now

Some of the Cool Metasploit Metrepreter script

Some of the Cool Metasploit Metrepreter script Getcountermeasure Getcountermeasure is an automated script Disable security measures such as antivirus, firewall, and more. Command:- run g etcountermeasure G etgui getgui script is used to enable RDP on a target system. Command:- run g etgui -e Get Telnet gettelnet script is used to enable telnet on the victim. Command:- run g ettelnet -e Winenum Winenum script is used to dump tokens, hashes. Command:- run winenum Getlocalsubnet getlocalsubnet script is used to get the local subnet mask of a victim. Command:- run get local subnets Killav Killav used to disable most antivirus programs. Command:- run killav Checkvm Checkvm used to see if you exploited a virtual machine. Command:- run checkvm Scraper Scraper is an automated script that gathers the victim machine environment information. Command:- run scraper Screenspy screenspy used to take screenshot f remote pc. Command:- run screenspy -t 10 Keylogrecorder keylogrecorder used to start ...