forked from wumb0/Spidernet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
spidernet.py
27 lines (24 loc) · 815 Bytes
/
spidernet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!usr/bin/env python
################################################
# SpiderNet
# By Wandering-Nomad (@wand3ringn0mad)
################################################
#
# This tool for educational uses only. This
# code should not be used for systems that one
# does not have authorization for. All
# modification / rebranding / public use
# requires the authors concent
#
################################################
#
# Original concept based on RaiderSec's "Building
# an SSH Botnet C&C using Python and Fabric
# http://raidersec.blogspot.com/2013/07/building-ssh-botnet-c-using-python-and.html
#
################################################
from lib.core import *
def main():
start_spidernet()
if __name__ == "__main__":
main()