2022-04-28 16:01:33 +00:00
|
|
|
|
<details>
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks云 ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 推特 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 你在一家**网络安全公司**工作吗?想要在HackTricks中看到你的**公司广告**吗?或者你想要**获取PEASS的最新版本或下载HackTricks的PDF**吗?请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 发现我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)收藏品[**The PEASS Family**](https://opensea.io/collection/the-peass-family)
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 获取[**官方PEASS和HackTricks周边产品**](https://peass.creator-spring.com)
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- **加入**[**💬**](https://emojipedia.org/speech-balloon/) [**Discord群组**](https://discord.gg/hRep4RUj7f) 或者 [**telegram群组**](https://t.me/peass) 或者在**Twitter**上**关注**我 [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- **通过向[hacktricks repo](https://github.com/carlospolop/hacktricks)和[hacktricks-cloud repo](https://github.com/carlospolop/hacktricks-cloud)提交PR来分享你的黑客技巧**。
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
|
|
|
|
</details>
|
2020-07-15 15:43:14 +00:00
|
|
|
|
```python
|
|
|
|
|
import hashlib
|
|
|
|
|
|
|
|
|
|
target = '2f2e2e' #/..
|
|
|
|
|
candidate = 0
|
|
|
|
|
while True:
|
2023-08-03 19:12:22 +00:00
|
|
|
|
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
|
2020-07-15 15:43:14 +00:00
|
|
|
|
```
|
|
|
|
|
|
2021-04-05 20:42:13 +00:00
|
|
|
|
```python
|
|
|
|
|
#From isHaacK
|
|
|
|
|
import hashlib
|
|
|
|
|
from multiprocessing import Process, Queue, cpu_count
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def loose_comparison(queue, num):
|
2023-08-03 19:12:22 +00:00
|
|
|
|
target = '0e'
|
|
|
|
|
plaintext = f"a_prefix{str(num)}a_suffix"
|
|
|
|
|
hash = hashlib.md5(plaintext.encode('ascii')).hexdigest()
|
2021-04-05 20:42:13 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
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
|
2021-04-05 20:42:13 +00:00
|
|
|
|
|
|
|
|
|
def worker(queue, thread_i, threads):
|
2023-08-03 19:12:22 +00:00
|
|
|
|
for num in range(thread_i, 100**50, threads):
|
|
|
|
|
loose_comparison(queue, num)
|
2021-04-05 20:42:13 +00:00
|
|
|
|
|
|
|
|
|
def main():
|
2023-08-03 19:12:22 +00:00
|
|
|
|
procs = []
|
|
|
|
|
queue = Queue()
|
|
|
|
|
threads = cpu_count() # 2
|
2021-04-05 20:42:13 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
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()
|
2021-04-05 20:42:13 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
while queue.empty(): # exits when a subprocess is done
|
|
|
|
|
pass
|
|
|
|
|
return 0
|
2021-04-05 20:42:13 +00:00
|
|
|
|
|
|
|
|
|
main()
|
|
|
|
|
```
|
2022-04-28 16:01:33 +00:00
|
|
|
|
<details>
|
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
<summary><a href="https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology"><strong>☁️ HackTricks云 ☁️</strong></a> -<a href="https://twitter.com/hacktricks_live"><strong>🐦 推特 🐦</strong></a> - <a href="https://www.twitch.tv/hacktricks_live/schedule"><strong>🎙️ Twitch 🎙️</strong></a> - <a href="https://www.youtube.com/@hacktricks_LIVE"><strong>🎥 Youtube 🎥</strong></a></summary>
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 你在一家**网络安全公司**工作吗?想要在HackTricks中**宣传你的公司**吗?或者你想要**获取PEASS的最新版本或下载HackTricks的PDF**吗?请查看[**订阅计划**](https://github.com/sponsors/carlospolop)!
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 发现我们的独家[**NFTs**](https://opensea.io/collection/the-peass-family)收藏品——[**The PEASS Family**](https://opensea.io/collection/the-peass-family)
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- 获取[**官方PEASS和HackTricks周边产品**](https://peass.creator-spring.com)
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- **加入**[**💬**](https://emojipedia.org/speech-balloon/) [**Discord群组**](https://discord.gg/hRep4RUj7f) 或者 [**Telegram群组**](https://t.me/peass),或者在**Twitter**上**关注**我 [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-08-03 19:12:22 +00:00
|
|
|
|
- **通过向[hacktricks仓库](https://github.com/carlospolop/hacktricks)和[hacktricks-cloud仓库](https://github.com/carlospolop/hacktricks-cloud)提交PR来分享你的黑客技巧**。
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
|
|
|
|
</details>
|