diff --git a/LICENSE.md b/LICENSE.md index 4b63220..31d894f 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,7 +1,2 @@ -# Findsploit by 1N3@CrowdShield -https://crowdshield.com - ## LICENSE: - -This software is free to use, distribute and modify as desired as long as original credit is maintained to the author (1N3@CrowdShield). - +You may modify and re-distribute this software as long as the project name "Findsploit", credit to the author "xer0dayz" and website URL "https://xerosecurity.com" are NOT mofified. Doing so will break the license agreement and a takedown notice will be issued. \ No newline at end of file diff --git a/README.md b/README.md index 7621ecc..1f0f701 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# Findsploit by 1N3@CrowdShield -https://crowdshield.com +# Findsploit by @xer0dayz +https://xerosecurity.com ![alt tag](/~https://github.com/1N3/Findsploit/blob/master/findsploit.png) @@ -44,11 +44,9 @@ Search all Metasploit payloads for windows only payloads: ``` ## LICENSE: -This software is free to distribute, modify and use with the condition that credit is provided to the creator (1N3@CrowdShield) and is not for commercial use. - -## DONATIONS: -Donations are welcome. This will help fascilitate improved features, frequent updates and better overall support. -- [x] BTC 1Fav36btfmdrYpCAR65XjKHhxuJJwFyKum -- [x] DASH XoWYdMDGb7UZmzuLviQYtUGb5MNXSkqvXG -- [x] ETH 0x20bB09273702eaBDFbEE9809473Fd04b969a794d -- [x] LTC LQ6mPewec3xeLBYMdRP4yzeta6b9urqs2f \ No newline at end of file +You may modify and re-distribute this software as long as the project name "Findsploit", credit to the author "xer0dayz" and website URL "https://xerosecurity.com" are NOT mofified. Doing so will break the license agreement and a takedown notice will be issued. + +## LINKS: +- [Twitter](https://www.twitter.com/xer0dayz "Personal Twitter") +- [Twitter](https://www.twitter.com/xerosecurity "Company Twitter") +- [Website](https://xerosecurity.com "XeroSecurity" \ No newline at end of file diff --git a/compilesploit b/compilesploit index 11c381e..ad983c9 100755 --- a/compilesploit +++ b/compilesploit @@ -1,5 +1,5 @@ #!/bin/bash -# compilesploit by 1N3 +# compilesploit by @xer0dayz # A small script to automatically find and copy an exploit file to the current directory... # @@ -20,8 +20,8 @@ function logo { if [ -z "$1" ]; then logo - echo -e "$COLOR1+ -- --=[compilesploit by 1N3" - echo -e "$COLOR1+ -- --=[https://crowdshield.com$RESET" + echo -e "$COLOR1+ -- --=[compilesploit by @xer0dayz" + echo -e "$COLOR1+ -- --=[https://xerosecurity.com$RESET" echo -e "$COLOR1+ -- --=[Usage: compilesploit " echo "" echo "" @@ -30,8 +30,8 @@ else DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) logo echo "" - echo -e "$COLOR1+ -- --=[compilesploit by 1N3" - echo -e "$COLOR1+ -- --=[https://crowdshield.com$RESET" + echo -e "$COLOR1+ -- --=[compilesploit by @xer0dayz" + echo -e "$COLOR1+ -- --=[https://xerosecurity.com$RESET" echo "" echo -e "$COLOR1+ -- --=[COMPILING:$COLOR2 $1 $RESET" echo "" diff --git a/copysploit b/copysploit index a8732f5..938e003 100755 --- a/copysploit +++ b/copysploit @@ -1,5 +1,5 @@ #!/bin/bash -# copysploit by 1N3 +# copysploit by @xer0dayz # A small script to automatically find and copy an exploit file to the current directory... # @@ -16,8 +16,8 @@ function logo { echo -e "$COLOR3\/ |_|_| |_|\__,_|___/ .__/|_|\___/|_|\__|" echo -e "$COLOR3 |_| " echo "" - echo -e "$COLOR1+ -- --=[findsploit by 1N3" - echo -e "$COLOR1+ -- --=[https://crowdshield.com$RESET" + echo -e "$COLOR1+ -- --=[findsploit by @xer0dayz" + echo -e "$COLOR1+ -- --=[https://xerosecurity.com$RESET" echo "" } diff --git a/findsploit b/findsploit index 6b3fe08..0bba798 100755 --- a/findsploit +++ b/findsploit @@ -1,6 +1,6 @@ #!/bin/bash -# Findsploit by 1N3 @CrowdShield -# https://crowdshield.com +# Findsploit by @xer0dayz +# https://xerosecurity.com # # Finsploit is a simple bash script to quickly and easily search both local and online exploit databases. # @@ -29,21 +29,21 @@ function logo { echo -e "$COLOR3\/ |_|_| |_|\__,_|___/ .__/|_|\___/|_|\__|" echo -e "$COLOR3 |_| " echo "" - echo -e "$COLOR1+ -- --=[findsploit v$VER by 1N3" - echo -e "$COLOR1+ -- --=[https://crowdshield.com$RESET" + echo -e "$COLOR1+ -- --=[findsploit v$VER by @xer0dayz" + echo -e "$COLOR1+ -- --=[https://xerosecurity.com$RESET" echo "" } function update { logo echo -e "$COLOR1+ -- --=[Checking for updates... $RESET" - if [[ $(curl -s https://api.github.com/repos/1N3/Findsploit/tags) == "" ]]; + if [[ $(curl -s https://api.github.com/repos/@xer0dayz/Findsploit/tags) == "" ]]; then echo -e "$COLOR1+ -- --=[Error: no active internet connection $RESET" echo "" exit 1 fi - LATEST_VERSION=$(curl -s https://api.github.com/repos/1N3/Findsploit/tags | grep -Po '"name":.*?[^\\]",'| head -1 | cut -c11-13) + LATEST_VERSION=$(curl -s https://api.github.com/repos/@xer0dayz/Findsploit/tags | grep -Po '"name":.*?[^\\]",'| head -1 | cut -c11-13) if [[ "$LATEST_VERSION" != "$VER" && "$LATEST_VERSION" != "" ]]; then echo -e "$COLOR1+ -- --=[Findsploit v$LATEST_VERSION is available to download. $RESET" @@ -53,7 +53,7 @@ function update { then cd ~ || { echo -e "$COLOR1+ -- --=[Update Failed $RESET" ; exit 1 ; } rm -r Findsploit 2> /dev/null - git clone /~https://github.com/1N3/Findsploit || { echo -e "$COLOR1+ -- --=[Couldn't download latest version $RESET" ; exit 1; } + git clone /~https://github.com/@xer0dayz/Findsploit || { echo -e "$COLOR1+ -- --=[Couldn't download latest version $RESET" ; exit 1; } cd Findsploit || { echo -e "$COLOR1+ -- --=[Update Failed $RESET" ; exit 1 ;} git checkout $LATEST_VERSION 2> /dev/null ./install.sh @@ -120,7 +120,7 @@ else echo "" echo -e "$COLOR2+ -- --=[Press any key to search online or Ctrl+C to exit...$RESET" read test - $BROWSER_CMD 'https://crowdshield.com' 2> /dev/null & + $BROWSER_CMD 'https://xerosecurity.com' 2> /dev/null & sleep 5 $BROWSER_CMD 'https://www.exploit-db.com/search/?action=search&description='$VAR1'+'$VAR2'+'$VAR3'&e_author=' 2>/dev/null &> /dev/null $BROWSER_CMD 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+exploit' 2>/dev/null &> /dev/null diff --git a/install.sh b/install.sh index 729fcb6..504ae0c 100644 --- a/install.sh +++ b/install.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Install script for Findsploit by 1N3@CrowdShield -# https://crowdshield.com +# Install script for Findsploit by @xer0dayz +# https://xerosecurity.com # FINDSPLOIT_INSTALL_DIR=/usr/share/findsploit @@ -16,8 +16,8 @@ echo -e "$COLOR3/ / | | | | | (_| \__ \ |_) | | (_) | | |_ " echo -e "$COLOR3\/ |_|_| |_|\__,_|___/ .__/|_|\___/|_|\__|" echo -e "$COLOR3 |_| " echo -e "$RESET" -echo -e "$COLOR1+ -- --=[findsploit by 1N3" -echo -e "$COLOR1+ -- --=[https://crowdshield.com$RESET" +echo -e "$COLOR1+ -- --=[findsploit by @xer0dayz" +echo -e "$COLOR1+ -- --=[https://xerosecurity.com$RESET" echo -e "$COLOR1+ -- --=[Usage: findsploit windows xp remote, etc." echo -e "$RESET"