UNDERCODE COMMUNITY
2.67K subscribers
1.23K photos
31 videos
2.65K files
80K links
πŸ¦‘ Undercode Cyber World!
@UndercodeCommunity


1️⃣ World first platform which Collect & Analyzes every New hacking method.
+ AI Pratice
@Undercode_Testing

2️⃣ Cyber & Tech NEWS:
@Undercode_News

3️⃣ CVE @Daily_CVE

✨ Web & Services:
β†’ Undercode.help
Download Telegram
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘Hashcat command structure:

In its most general form, the command to start Hashcat looks like (in it, the | symbol means "OR"):

1) hashcat
In subsequent commands, HASH, FILE-WITH-HASHEM and hccapxfile will be designated as simply "HASH" - remember that this can be either a hash string or the path to the file in which the hash is stored.

General view of the command for launching a dictionary attack:


hashcat -m 0

If the hash is placed in a file, then the command:

2) hashcat -m -a 0 /dir
General view of the command to launch a mask attack:

3) hashcat -m -a 3 'МАБКА'
If the hash is placed in a file, then the command:

4) hashcat -m -a 3 /
With the -m option, you need to specify the TYPE of the hash to crack, which is indicated by a number. The hash numbers are given below when describing the hash extraction process.

πŸ¦‘Examples of Hashcat masks
Dictionary attack
I’ll first start with a dictionary attack against the list of MD5 hashes:

hashcat64.exe -a 0 -m 0 example_md5_hashes.txt combined_seclists_password_list.txt -O
The result of the command cracked zero hashes. Bummer.

You may have noticed I added the -O flag to the end of the command. The -O will greatly increase the cracking speed, but will limit the password length that you’ll be able to crack. This is usually fine, unless you are cracking passwords greater than 27 characters.

Dictionary attack with rules
Let’s try a rule. As mentioned earlier, hashcat ships with several rules located in the rules directory. You use the -r <rulefile.rule> option to apply a rule. For example, I’ll use the d3ad0ne.rule:

hashcat64.exe -a 0 -m 0 example_md5_hashes.txt combined_seclists_password_list.txt -r rules\d3ad0ne.rule -O
Within a few seconds hashes will start to crack. You can press the β€˜s’ key to get an estimated time of completion, as well as see other data about the session. For me, this ran for 8 minutes and recovered 26 of the passwords.



Not bad! And that is just one rule! Cycling through the rules will recover new passwords, but I’m just going to skip to a different attack. More on rules in a follow-on post (eventually), but you can take a look at my follow-on post about rule writing, or the hashcat wiki to get started with writing your own rules.

πŸ¦‘Combinator attack
A combinator attack is an attack that combines two dictionaries. To perform this attack I’ll first create a copy of my wordlist with a few modifications. First I’ll use a script, wordlist_cleaner.py to lowercase all letters, and remove any numbers and special characters from each word. Then I’ll use another script, capitalize_letters.py, to capitalize the first letter of each word.


C:\Users\Jake\hashcat-4.2.1>python3 wordlist_cleaner.py -f combined_seclists_password_list.txt -o combined_seclists_password_list_clean.txt

[*] Reading file: combined_seclists_password_list.txt
[*] Processing 13272929 words.
[*] Changing all words to lowercase...
[*] Removing numbers and special characters...
[*] Removing duplicate words...
[*] Printing cleaned words to combined_seclists_password_list_clean.txt

C:\Users\Jake\hashcat-4.2.1>python3 capitalize_letters.py -f combined_seclists_password_list_clean.txt -o combined_seclists_password_list_caps.txt
[*] Reading file: combined_seclists_password_list_clean.txt...
[*] Processing 7243374 words...
[*] Changing all words to lowercase...
[*] Capitalizing first letter of each word...
[*] Writing to combined_seclists_password_list_caps.txt…
Now I’ll try an attack:

hashcat64.exe -a 1 -m 0 example_md5_hashes.txt combined_seclists_password_list_caps.txt combined_seclists_password_list_caps.txt -k "$!" -O


▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
European Union wants to give users strong data rights.
#international
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘LIST 4 LEGIT .onion dark web websites:

OnionWallet Anonymous and secure Bitcoin Wallet and Bitcoin Mixer, Laundry. Wash your Bitcoins. Tor Web Wallet http://ow24et3tetp6tvmk.onion/ online

AnonGTS http://ocu3errhpxppmwpr.onion/ online

TorLinks | .onion Link List The Hidden Wiki Deep Web Onion Urls Onionland Tor linklist http://torlinkbgs6aabns.onion/ online

The new papyrefb2.com library http://papyrefb2tdk6czd.onion/ online

exe2gut5 chan http://exe2gut5zya5cfqh.onion/ offline

Imperial Library of Trantor http://xfmro77i3lixucja.onion/ online

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Automatic operation test on Shinkansen "E7 series", verification of 5G utilization in railway environment .
#Technologies
Forwarded from UNDERCODE NEWS
Japan Corporation develops mortar that can make concrete formwork with a 3D printer.
#Technologies
Forwarded from UNDERCODE NEWS
'User Rights Map' Could Be a Hints of Cloud Visibility.
#Analytiques
Forwarded from UNDERCODE NEWS
The Annual Report on Personal Information Protection Overseas Trends-International organizations such as the UN and OECD.
#Analytiques
Forwarded from UNDERCODE NEWS
32GB memory fell to more than 600 manufacturers said: next year to raise prices again.
#Technologies
Forwarded from UNDERCODE NEWS
WMO Korea’s personal information leakage accident… Member attention.
#Leaks
Forwarded from UNDERCODE NEWS
E-waste is rampant, Britain bombards Apple and Amazon: you should take more responsibility.
#international
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘A GOOD COLLECTION OF RANSOMWARES:

1) WANNACRY
https://github.com/ytisf/theZoo/tree/master/malwares/Binaries/Ransomware.WannaCry

2) RAASNet
https://github.com/leonv024/RAASNet

3) MALWARES & RANSOMWARES:
https://github.com/fabrimagic72/malware-samples

4)A POC Windows crypto-ransomware (Academic)
https://github.com/mauri870/ransomware

5) A simple, fully python ransomware PoC
https://github.com/deadPix3l/CryptSky

6) Crypter
https://github.com/sithis993/Crypter

7) Various codes related to Ransomware Developement
https://github.com/roothaxor/Ransom

8) JavaRansomware
https://github.com/PanagiotisDrakatos/JavaRansomware

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Phishing sites pretending to be public institutions are active... Needs countermeasures such as public relations.
#CyberAttacks
Forwarded from UNDERCODE NEWS
Genesis, intelligent car with improved convenience and safety with biometric technology.
#Technologies