Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Z4nzu
GitHub Repository: Z4nzu/hackingtool
Path: blob/master/tools/others/web_crawling.py
1275 views
1
# coding=utf-8
2
from core import HackingTool
3
from core import HackingToolsCollection
4
5
6
class GoSpider(HackingTool):
7
TITLE = "Gospider"
8
DESCRIPTION = "Gospider - Fast web spider written in Go"
9
INSTALL_COMMANDS = ["sudo go get -u github.com/jaeles-project/gospider"]
10
PROJECT_URL = "https://github.com/jaeles-project/gospider"
11
12
def __init__(self):
13
super(GoSpider, self).__init__(runnable = False)
14
15
16
class WebCrawlingTools(HackingToolsCollection):
17
TITLE = "Web crawling"
18
TOOLS = [GoSpider()]
19
20