Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0def061

Browse files
authored
Merge pull request lazorfuzz#9 from tylerp96/tylerp96-readme-1
README
2 parents 45d0469 + 6dc4b64 commit 0def061

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

README.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,3 +176,62 @@ u'KE'
176176
# To filter proxies by country and type:
177177
# proxylist = hacklib.getProxies(country_filter = ('RU', 'CA', 'SE'), proxy_type='Socks5')
178178
```
179+
-
180+
Word Mangling:
181+
182+
```python
183+
from hacklib import *
184+
185+
word = Mangle("Test", 0, 10, 1990, 2016)
186+
187+
word.Leet()
188+
word.Numbers()
189+
word.Years()
190+
```
191+
Output:
192+
193+
```
194+
T3$t
195+
Test0
196+
0Test
197+
...snip...
198+
Test10
199+
10Test
200+
Test1990
201+
1990Test
202+
...snip...
203+
Test2016
204+
2016Test
205+
```
206+
-
207+
208+
Pattern Create:
209+
210+
```python
211+
from hacklib import *
212+
213+
Pattern = PatternCreate(100)
214+
215+
Pattern.generate()
216+
```
217+
Output:
218+
219+
```
220+
Aa0Aa1Aa2Aa3Aa4Aa5Aa6Aa7Aa8Aa9Ab0Ab1Ab2Ab3Ab4Ab5Ab6Ab7Ab8Ab9Ac0Ac1Ac2Ac3Ac4Ac5Ac6Ac7Ac8Ac9Ad0Ad1Ad2A
221+
```
222+
-
223+
224+
Pattern Offset:
225+
226+
```python
227+
from hacklib import *
228+
229+
Offset = PatternOffset("6Ab7")
230+
231+
Offset.find()
232+
```
233+
Output:
234+
235+
```python
236+
[+] Offset: 50
237+
```

0 commit comments

Comments
 (0)