From 28c753b0c1d20cd122529f2249e576b750e3a4b3 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 28 Mar 2017 07:00:08 -0400 Subject: [PATCH] Allignment with Master --- README.md | 2 +- fatrat | 18 ++++++++++++------ tools/pump.py | 25 +++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 7 deletions(-) create mode 100644 tools/pump.py diff --git a/README.md b/README.md index 367c5e1..4d7db08 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ An easy tool to generate backdoor and easy tool to post exploitation attack like browser attack,dll . This tool compiles a malware with popular payload and then the compiled malware can be execute on windows, android, mac . The malware that created with this tool also have an ability to bypass most AV software protection . # Screenshot - + # --------------------------------------------------------------- diff --git a/fatrat b/fatrat index 7d96b10..4605625 100644 --- a/fatrat +++ b/fatrat @@ -617,7 +617,8 @@ echo "" echo -e $okegreen" [13] rar >> bacdoor.rar "$yellow"( Winrar old version)" echo -e $okegreen" [14] Back to Menu " echo -e " " - echo -n -e $red' \033[4mCreator@fatrat:\033[0m>> '; tput sgr0 #insert your choice + echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"creator$okegreen]:" + echo -ne $okegreen" └─────► " ;tput sgr0 read fatrat1 if test $fatrat1 == '1' then @@ -944,7 +945,8 @@ echo -e $okegreen" ============================================================ echo -e " [5] Load a saved Listener" echo -e " [6] Back to Menu " echo -e " " - echo -n -e $red' \033[4mListeners@fatrat:\033[0m>> '; tput sgr0 #insert your choice + echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"listener$okegreen]:" + echo -ne $okegreen" └─────► " ;tput sgr0 read fatrat1 if test $fatrat1 == '1' #LINUX @@ -1137,7 +1139,8 @@ CODENAME='Mario Bros' # Seems to fix some metasploit bugs rm -rf ~/.msf4/local/* >/dev/null 2>&1 -echo -n -e $red' \033[4mMicrosploit@fatrat:\033[0m>> '; tput sgr0 +echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"microsploit$okegreen]:" +echo -ne $okegreen" └─────► " ;tput sgr0 read choice case $choice in 1) @@ -1873,7 +1876,8 @@ echo -e $red" Powershell$cyan Injection attacks on any$red Windows Platfo echo -e $yellow" [7] $okegreen Create Backdoor with C / Metasploit Staging Protocol (FUD 98%)" echo -e $yellow" [8] $okegreen Back to Menu " echo -e $yellow" " - echo -n -e $red' \033[4mPwnWind@fatrat:\033[0m>> '; tput sgr0 #insert your choice + echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"pwnwind$okegreen]:" + echo -ne $okegreen" └─────► " ;tput sgr0 read fatrat1 if test $fatrat1 == '1' #NUMBER 1 BEBE @@ -2811,7 +2815,8 @@ menu () { echo -e $white" [$okegreen"14"$white]$okegreen Credits " echo -e $white" [$okegreen"15"$white]$okegreen Exit " echo -e " " - echo -n -e $red' \033[4mScreetsec@Fatrat:\033[0m '; tput sgr0 #insert your choice + echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"menu$okegreen]:" + echo -ne $okegreen" └─────► " ;tput sgr0 read fatrat if test $fatrat == '1' @@ -3024,7 +3029,8 @@ echo echo -e $white" [$okegreen"14"$white]$okegreen Credits " echo -e $white" [$okegreen"15"$white]$okegreen Exit " echo -e " " - echo -n -e $red' \033[4mScreetsec@Fatrat:\033[0m '; tput sgr0 #insert your choice + echo -e $okegreen" ┌─["$red"TheFatRat$okegreen]──[$red~$okegreen]─["$yellow"menu$okegreen]:" + echo -ne $okegreen" └─────► " ;tput sgr0 read fatrat if test $fatrat == '1' diff --git a/tools/pump.py b/tools/pump.py new file mode 100644 index 0000000..61030cf --- /dev/null +++ b/tools/pump.py @@ -0,0 +1,25 @@ +import sys +#python fpump.py [file] [size] [-mb/-kb] + +if len(sys.argv) < 4: + sys.exit('[-] Missing argument!\n[+] Usage: python pumper.py [file] [size] [-mb/-kb]') + +fp = sys.argv[1] +size = int(sys.argv[2]) +tp = sys.argv[3] + +f = open(fp, 'ab') +if tp == '-kb': + b_size = size * 1024 +elif tp == '-mb': + b_size = size * 1048576 +else: + sys.exit('[-] Use -mb or -kb!') + +bufferSize = 256 +for i in range(b_size/bufferSize): + f.write(str('0' * bufferSize)) + +f.close() + +print '[+] Finished pumping', fp, 'with', size, tp