Skip to content

Commit b3f8c02

Browse files
committed
Update
1 parent 5585355 commit b3f8c02

1,115 files changed

Lines changed: 3870 additions & 1 deletion

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/addon/hack_wifi/addon.prop

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Add-on
2+
3+
id=hack_wifi
4+
name=Hack Wi-Fi
5+
author=Kakathic
6+
version=1.0
7+
versionCode=100
8+
root=true
9+
description=Wi-Fi hacking tool
10+
description_vi=Công cụ hack Wi-Fi
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Kakathic
2+
3+
MPAT="${0%/*}"
4+
5+
# Kiểm tra cập nhật mới và cập nhật
6+
check_add "$MPAT"
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
google_text="Currently using google translate"
2+
wifi_text_1="List of networks"
3+
wifi_text_2="Choose any WIFI network to try to find the password"
4+
wifi_text_3="Start connecting"
5+
wifi_text_4="No Wi-Fi network found."
6+
wifi_text_5="Saved password"
7+
wifi_text_6="Saved password not found."
8+
9+
STR_ADVANCED_CUSTOM="Advanced customization"
10+
STR_OPTION="Option"
11+
STR_ALL_ATTACK_METHODS="All attack methods combined"
12+
STR_BASIC_ATTACK="Basic attack"
13+
STR_PIN_DATABASE_ATTACK="PIN database attack"
14+
STR_WPS_PUSH_ATTACK="Push button attack (WPS)"
15+
STR_PIN_WARNING="Entering the correct PIN will increase the chances of a successful connection"
16+
STR_INPUT_PIN="Enter PIN code"
17+
STR_PIN_CODE="PIN code"
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
###############################################################################
2+
#
3+
# ClassID <-> Name Translation Table
4+
#
5+
# This file can be used to assign names to classids for easier reference
6+
# in all libnl tools.
7+
#
8+
# Format:
9+
# <MAJ:> <NAME> # qdisc definition
10+
# <MAJ:MIN> <NAME> # class deifnition
11+
# <NAME:MIN> <NAME> # class definition referencing an
12+
# existing qdisc definition.
13+
#
14+
# Example:
15+
# 1: top # top -> 1:0
16+
# top:1 interactive # interactive -> 1:1
17+
# top:2 www # www -> 1:2
18+
# top:3 bulk # bulk -> 1:3
19+
# 2:1 test_class # test_class -> 2:1
20+
#
21+
# Illegal Example:
22+
# 30:1 classD
23+
# classD:2 invalidClass # classD refers to a class, not a qdisc
24+
#
25+
###############################################################################
26+
27+
# <CLASSID> <NAME>
28+
29+
# Reserved default classids
30+
0:0 none
31+
ffff:ffff root
32+
ffff:fff1 ingress
33+
34+
#
35+
# List your classid definitions here:
36+
#
37+
38+
39+
40+
###############################################################################
41+
# List of auto-generated classids
42+
#
43+
# DO NOT ADD CLASSID DEFINITIONS BELOW THIS LINE
44+
#
45+
# <CLASSID> <NAME>
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
#
2+
# Location definitions for packet matching
3+
#
4+
5+
# name alignment offset mask shift
6+
ip.version u8 net+0 0xF0 4
7+
ip.hdrlen u8 net+0 0x0F
8+
ip.diffserv u8 net+1
9+
ip.length u16 net+2
10+
ip.id u16 net+4
11+
ip.flag.res u8 net+6 0xff 7
12+
ip.df u8 net+6 0x40 6
13+
ip.mf u8 net+6 0x20 5
14+
ip.offset u16 net+6 0x1FFF
15+
ip.ttl u8 net+8
16+
ip.proto u8 net+9
17+
ip.chksum u16 net+10
18+
ip.src u32 net+12
19+
ip.dst u32 net+16
20+
21+
# if ip.ihl > 5
22+
ip.opts u32 net+20
23+
24+
25+
#
26+
# IP version 6
27+
#
28+
# name alignment offset mask shift
29+
ip6.version u8 net+0 0xF0 4
30+
ip6.tc u16 net+0 0xFF0 4
31+
ip6.flowlabel u32 net+0 0xFFFFF
32+
ip6.length u16 net+4
33+
ip6.nexthdr u8 net+6
34+
ip6.hoplimit u8 net+7
35+
ip6.src 16 net+8
36+
ip6.dst 16 net+24
37+
38+
#
39+
# Transmission Control Protocol (TCP)
40+
#
41+
# name alignment offset mask shift
42+
tcp.sport u16 tcp+0
43+
tcp.dport u16 tcp+2
44+
tcp.seq u32 tcp+4
45+
tcp.ack u32 tcp+8
46+
47+
# Data offset (4 bits)
48+
tcp.off u8 tcp+12 0xF0 4
49+
50+
# Reserved [0 0 0] (3 bits)
51+
tcp.reserved u8 tcp+12 0x04 1
52+
53+
# ECN [N C E] (3 bits)
54+
tcp.ecn u16 tcp+12 0x01C00 6
55+
56+
# Individual TCP flags (0|1) (6 bits in total)
57+
tcp.flag.urg u8 tcp+13 0x20 5
58+
tcp.flag.ack u8 tcp+13 0x10 4
59+
tcp.flag.psh u8 tcp+13 0x08 3
60+
tcp.flag.rst u8 tcp+13 0x04 2
61+
tcp.flag.syn u8 tcp+13 0x02 1
62+
tcp.flag.fin u8 tcp+13 0x01
63+
64+
tcp.win u16 tcp+14
65+
tcp.csum u16 tcp+16
66+
tcp.urg u16 tcp+18
67+
tcp.opts u32 tcp+20
68+
69+
#
70+
# User Datagram Protocol (UDP)
71+
#
72+
# name alignment offset mask shift
73+
udp.sport u16 tcp+0
74+
udp.dport u16 tcp+2
75+
udp.length u16 tcp+4
76+
udp.csum u16 tcp+6
321 KB
Binary file not shown.
133 KB
Binary file not shown.
129 KB
Binary file not shown.
132 KB
Binary file not shown.
2.26 MB
Binary file not shown.

0 commit comments

Comments
 (0)