mirror of
https://github.com/carlospolop/hacktricks
synced 2024-12-12 06:12:55 +00:00
76 lines
3.5 KiB
Markdown
76 lines
3.5 KiB
Markdown
<details>
|
|
|
|
<summary><strong>Jifunze kuhusu kudukua AWS kutoka sifuri hadi shujaa na</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (Mtaalam wa Timu Nyekundu ya AWS ya HackTricks)</strong></a><strong>!</strong></summary>
|
|
|
|
Njia nyingine za kusaidia HackTricks:
|
|
|
|
* Ikiwa unataka kuona **kampuni yako ikionekana katika HackTricks** au **kupakua HackTricks kwa muundo wa PDF** Angalia [**MPANGO WA KUJIUNGA**](https://github.com/sponsors/carlospolop)!
|
|
* Pata [**swag rasmi ya PEASS & HackTricks**](https://peass.creator-spring.com)
|
|
* Gundua [**The PEASS Family**](https://opensea.io/collection/the-peass-family), mkusanyiko wetu wa [**NFTs**](https://opensea.io/collection/the-peass-family) ya kipekee
|
|
* **Jiunge na** 💬 [**Kikundi cha Discord**](https://discord.gg/hRep4RUj7f) au [**kikundi cha telegram**](https://t.me/peass) au **tufuate** kwenye **Twitter** 🐦 [**@hacktricks_live**](https://twitter.com/hacktricks_live)**.**
|
|
* **Shiriki mbinu zako za kudukua kwa kuwasilisha PRs kwenye** [**HackTricks**](https://github.com/carlospolop/hacktricks) na [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) repos za github.
|
|
|
|
</details>
|
|
```python
|
|
import hashlib
|
|
|
|
target = '2f2e2e' #/..
|
|
candidate = 0
|
|
while True:
|
|
plaintext = str(candidate)
|
|
hash = hashlib.md5(plaintext.encode('ascii')).hexdigest()
|
|
if hash[-1*(len(target)):] == target: #End in target
|
|
print('plaintext:"' + plaintext + '", md5:' + hash)
|
|
break
|
|
candidate = candidate + 1
|
|
```
|
|
|
|
```python
|
|
#From isHaacK
|
|
import hashlib
|
|
from multiprocessing import Process, Queue, cpu_count
|
|
|
|
|
|
def loose_comparison(queue, num):
|
|
target = '0e'
|
|
plaintext = f"a_prefix{str(num)}a_suffix"
|
|
hash = hashlib.md5(plaintext.encode('ascii')).hexdigest()
|
|
|
|
if hash[:len(target)] == target and not any(x in "abcdef" for x in hash[2:]):
|
|
print('plaintext: ' + plaintext + ', md5: ' + hash)
|
|
queue.put("done") # triggers program exit
|
|
|
|
def worker(queue, thread_i, threads):
|
|
for num in range(thread_i, 100**50, threads):
|
|
loose_comparison(queue, num)
|
|
|
|
def main():
|
|
procs = []
|
|
queue = Queue()
|
|
threads = cpu_count() # 2
|
|
|
|
for thread_i in range(threads):
|
|
proc = Process(target=worker, args=(queue, thread_i, threads ))
|
|
proc.daemon = True # kill all subprocess when main process exits.
|
|
procs.append(proc)
|
|
proc.start()
|
|
|
|
while queue.empty(): # exits when a subprocess is done
|
|
pass
|
|
return 0
|
|
|
|
main()
|
|
```
|
|
<details>
|
|
|
|
<summary><strong>Jifunze kuhusu kudukua AWS kutoka sifuri hadi shujaa na</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (Mtaalam wa Timu Nyekundu ya AWS ya HackTricks)</strong></a><strong>!</strong></summary>
|
|
|
|
Njia nyingine za kusaidia HackTricks:
|
|
|
|
* Ikiwa unataka kuona **kampuni yako ikionekana katika HackTricks** au **kupakua HackTricks kwa muundo wa PDF** Angalia [**MPANGO WA KUJIUNGA**](https://github.com/sponsors/carlospolop)!
|
|
* Pata [**swag rasmi ya PEASS & HackTricks**](https://peass.creator-spring.com)
|
|
* Gundua [**The PEASS Family**](https://opensea.io/collection/the-peass-family), mkusanyiko wetu wa [**NFTs**](https://opensea.io/collection/the-peass-family) ya kipekee
|
|
* **Jiunge na** 💬 [**Kikundi cha Discord**](https://discord.gg/hRep4RUj7f) au [**kikundi cha telegram**](https://t.me/peass) au **tufuate** kwenye **Twitter** 🐦 [**@hacktricks_live**](https://twitter.com/hacktricks_live)**.**
|
|
* **Shiriki mbinu zako za kudukua kwa kuwasilisha PRs kwenye** [**HackTricks**](https://github.com/carlospolop/hacktricks) na [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) repos za github.
|
|
|
|
</details>
|