-
So I wrote this script because I often need to run tcpdump on a remote host and then view it in wireshark. The old method was to run tcpdump on remote host, scp/rsync the file back to my local machine, open it in wireshark, view it. This script saves a lot of time. It assumes […]
-
[codesyntax lang=”bash”] #!/bin/bash # By Ed Wiget # This script grabs the latest nmap, zenmap, ncat, nping in rpm format and converts them to deb # 20121031 – original script # the version we are grabbing VER=6.01-1 # the architecture we are using ARCH=x86_64 # our working dir TEMP_DIR=~/nmap-files # check if it exists and […]
-
[codesyntax lang=”bash”] mysqldump –opt –add-drop-table -Q -u localuser –password=localpassword localdatabase | pigz -c | ssh -c blowfish remoteuser@remoteserver ‘gunzip -c | mysql -u remoteuser –password=remotepassword remotedatabase’ [/codesyntax]
-
Glastopf is a web application honeypot which emulates thousands of vulnerabilities to gather data from attacks targeting web applications. The principle behind it is very simple: Reply the correct response to the attacker exploiting the web application. This article is mostly to cover the installation, setup, usage, etc Installation
-
The following will find malware and packed/obfuscated code along with javascript inside of pdf’s, etc recursively in the path you specify [codesyntax lang=”bash”] #!/bin/bash # By Ed Wiget # this script scans path for virus, malware, etc if [ “$1” = “” ]; then echo “what is the path to scan? i.e. /www” read cspath […]
-
Credit where credit is due….The bulk of this article was obtained from the excellent article located here: http://www.xors.me/?p=4458 I found the original article and then modified it to fit my operating system and environment. It has been modified to work with Backtrack Linux installation using native virtualbox-4.1 installation Background To provide some background, Cuckoo Sandbox performs automated […]
-
I had a few virtualboxes running centos 5.7 that I hadn’t updated in a while. They were used for testing. Today I went to update them and couldn’t because the 5.7 repo’s had been deprecated and were not longer available. I found a quick way to do this, and this got my virtualboxes updated to […]
-
Backtrack has dbpwaudit in /pentest/database/dbpwaudit, however, it does not come with the java jar files required. So, first you have to go download them. The easiest way I found out to do that is by simply searching for the aliases and then googling them. You can get the aliases with the -L option: [codesyntax lang=”bash”] […]
-
So I wrote this script because I had a bunch of files I copied from my ipod touch that were named like ABCD.mp3 and I wanted them to be like ARTIST-SONG_TITLE.mp3 There was also another issue where I had some songs named ARTIST-SONG_TITLE.mp3 but they did not have the id3 information. So this script does […]