-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhacks.json
127 lines (126 loc) · 3.77 KB
/
hacks.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"all-hacks": [
{
"id": "filewipe",
"category": "fileio",
"name": "File Wiping",
"description": "Wipes some files."
},
{
"id": "filedup",
"category": "fileio",
"name": "File Duplication",
"description": "Duplicates itself."
},
{
"id": "filecrawl",
"category": "fileio",
"name": "File Crawl",
"description": "Crawls the entire filesystem."
},
{
"id": "filesearch",
"category": "fileio",
"name": "Search Files",
"description": "Search for files within the entire filesystem."
},
{
"id": "keylogger",
"category": "spyware",
"name": "Key Logger",
"description": "Logs key presses."
},
{
"id": "osinfodump",
"category": "spyware",
"name": "OS info dumper",
"description": "Dumps OS info."
},
{
"id": "locationdump",
"category": "spyware",
"name": "Location Retriever",
"description": "Retrieves the user's current location."
},
{
"id": "screensteal",
"category": "spyware",
"name": "Screen Steal",
"description": "Steals the user's computer screen."
},
{
"id": "webcamjack",
"category": "spyware",
"name": "Webcam Jack",
"description": "Fetches images from the webcam."
},
{
"id": "clickjack",
"category": "mischack",
"name": "Click Jack",
"description": "Mess with the user's mouse.",
"options": [
{
"id": "clickjack1",
"name": "Click Jack 1",
"description": "1st option for click jacking."
},
{
"id": "clickjack2",
"name": "Click Jack 2",
"description": "2nd option for click jacking."
}
]
},
{
"id": "ddos",
"category": "mischack",
"name": "DDoS",
"description": "DDoS target computer."
},
{
"id": "remoteshutdown",
"category": "mischack",
"name": "Remote Shutdown",
"description": "Remotely shuts down the user's computer."
},
{
"id": "soundscare",
"category": "trollware",
"name": "Sound Scare",
"description": "Record 5 seconds from mic and play it back pitch-shifted."
},
{
"id": "win100",
"category": "trollware",
"name": "100 Windows of death",
"description": "Opens a random app 100 times."
}
],
"hack-categories": [
{
"id": "fileio",
"name": "File manipulation",
"description": "Wipes some files.",
"hacks": [ "filewipe", "filedup", "filecrawl", "filesearch" ]
},
{
"id": "spyware",
"name": "Spyware",
"description": "Spy on people.",
"hacks": [ "keylogger", "osinfodump", "locationdump", "screensteal", "webcamjack" ]
},
{
"id": "trollware",
"name": "Trollware",
"description": "Troll people.",
"hacks": [ "soundscare", "win100" ]
},
{
"id": "mischack",
"name": "Misc. Hacks",
"description": "Miscellaneous Hacks",
"hacks": [ "clickjack", "ddos", "remoteshutdown" ]
}
]
}