UNDERCODE COMMUNITY
2.68K subscribers
1.23K photos
31 videos
2.65K files
80.1K 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π•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘INSTA BRUTE UPDATED THIS MONTH :


Suggested to use proxies from https://pastebin.com/PU95YtCQ

open terminal

$ apt-get update -y

$ apt-get upgrade -y

$ pkg install python -y

$ pkg install python2 -y

$ pkg install git -y

$ pip install lolcat

$ git clone https://github.com/evildevill/instahack

$ ls

$ cd instahack

$ ls

$ bash setup

$ bash instahack.sh

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
An Anonymous Turkish hackers group crashed the ECHR website asking for Demirtaş's release.
#CyberAttacks
Forwarded from UNDERCODE NEWS
Cyber ​​warfare of the great powers.
#CyberAttacks
Forwarded from UNDERCODE NEWS
North Korea's Lazarus Attacks on Coronavirus-related Data.
#CyberAttacks
Forwarded from UNDERCODE NEWS
Saudi Arabia, UAE anonymous hackers, hacked dozens of journalists’ phones
#CyberAttacks
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ Nmap Basic :

Target specification

-iL input from list
-iR input from random

Host probe

-sL scan by list
-sP scan by Ping
-P0 no ping
-PS tcp syn ping
-PA tcp ack ping
-PU udp ping
-PE; -PP, -PM
-PR arp ping
-n no domain name resolution
-R do reverse domain name resolution

Port Scan

-sS tcp syn scan
-sT tcp connect() scan
-sU udp scan
-sN set flag to null
-sF set flag FIN
-sX set all flags
-sA tcp ack
-sW tcp window
-sM tcp maimon
--scanflags URGSYNACKFINRST
-sI zombie scan
-sO ip protocol scan
-b ftp bounce scan

Port specification

-p <ports>
-F fast scan

Service probe

-sV scan service version
-A : -O + -sV , operate system probe and service version probe
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Sony is planning to raise PS5 inventory, TSMC ASE is preparing more funding for capacity.
#Technologies
Forwarded from UNDERCODE NEWS
Paragon launches the most recent patch of the Linux NTFS file system.
#Updates
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

FULL NETWORK HACKING LIKE A PRO :

DOWNLOAD :https://github.com/billyshin/Python_Hacking

1) Programs and Tools written in Python that are useful in hacking in Kali Linux.

Required: Kali Linux, Python2, scapy package, netfilterqueue

pip install scapy

pip install scapy-http

pip install netfilterqueue
Contents:

2) mac_changer.py - A program that is used to change the MAC Address to ensure anonymity.

Usage: python mac_changer.py -i [Interface] -m [new MAC Address]
network_scanner.py - A program that uses target IP Address to get the target MAC Address under the same network.

Usage: python network_scanner.py -t [Taget IP Address]

3) arp_spoof.py - A program that functions exactly the same as arpspoof command in Kali Linux. It takes target ip address and gateway ip address as command line arguments.

Usage: python arp_spoof.py -t [Target IP Address] -g [Gateway]
packet_sniffer.py - A program that acts as MITM (Man In The Middle) to sniff/capture data through http layer such as url, username, password, etc. It must run with arp_spoof.py simultaneously.

Usage: python arp_spoof.py -t [Target IP Address] -g [Gateway]
python packet_sniffer.py -i [Interface]

4) dns_spoof.py - A program that acts as MITM (Man In The Middle) to intercept packets and store them in netfilterqueue and redirect target device to a certain IP Address.

Usage: python dns_spoof.py -i [IP Address]
file_interceptor.py - A program that hijacks target's HTTP request and modifies HTTP status code as well as HTTP response in order to redirect to user specified url.

Usage: iptables -I FORWARD -j NFQUEUE --queue-num 0
python arp_spoof.py -t [Target IP Address] -g [Gateway]
python file_interceptor.py -r [Redirect URL]

5) download.py - A program that download a file from input URL and save it to input destination location.

Usage: python download.py -u [URL] -d [Destination loaction]
reverse_backdoor.py - A backdoor program that allows hacker to execute simple commands on target device using reversed TCP. Need to change ip_address to your current IP Address in main code. It must be run in the target device locally, and thus social engineering or any other MITM attack should be used. It works in all environment that supports Python. listener.py only works when reverse_backdoor.py is running locally in target device.

6) listener.py - A socket program that allows us to listen from the reverser_backdoor.py program.

Usage: reverse_backdoor.py is running in target device
python listener.py -i [IP Address]
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Developers bring x64 to Microsoft Lumia 950 XL desktop software.
#Updates
Forwarded from UNDERCODE NEWS
Probe Digital releases a long-distance IP zoom camera solution with high-magnification resolution.
#Technologies
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

Android Application Structure :

Fundamental background knowledge is important for building any skill, and mobile hacking is no different. Android applications are written primarily in Java, Kotlin (transpiled to Java), and C++. When distributed, they use the .apk extension which stands for Android PacKage. An APK is really just a ZIP file containing all the assets and bytecode for an app. A typical unzipped APK structure looks like this:

myapp.apk
β”œβ”€β”€ AndroidManifest.xml
β”œβ”€β”€ META-INF/
β”œβ”€β”€ classes.dex
β”œβ”€β”€ lib/
β”œβ”€β”€ res/
└── resources.arsc

Let’s briefly cover each of these:

AndroidManifest.xml
This is a compressed version of the AndroidManifest.xml file which contains all of the basic application information such as the package name, package version, externally accessibly activities and services, minimum device version, and more. The compressed version of this file is not humanly readable, but there are a couple of tools that are able to uncompress it, most notably being apktool (more on that later).

META-INF/
The META-INF/ folder is essentially a manifest of metadata information including the developer certificate and checksums for all the files contained within an APK. If you were to try and make changes to an APK without removing and re-signing this folder, you would get an error when installing the modified version.

classes.dex
The classes.dex file (sometimes there are multiple) contains all the compiled bytecode of an Android application. Later on, this is what we will decompile into Java source files.

resources.arsc
The resources.arsc file contains metadata about the resources and the XML nodes of the compiled resource files like XML layout files, drawables, strings, and more. It also contains information about their attributes (like width, position, etc) and the resource IDs, which are used globally by both Java and XML app files in the app. This file is compressed into a binary form that is read into memory during runtime. Apktool can also decompress these files and output them into a humanly-readable format for you to explore.

res/
The β€œres” folder contains compressed binary XML versions of the resource XML files that are paired with the resources.arsc file during runtime to read images, translations, etc. These XML files are in the same binary format as the AndroidManifest.xml file and can be easily decoded with apktool.

lib/
Not all Android apps contain a lib/ folder, but any app with native C++ libraries will. Within this folder, you will find different folders per-architecture, each one containing .so files specifically compiled for that target architecture such as β€œarmeabi-v7a” and β€œx86”. This is also why you cannot install an app on an x86 device without it providing x86-compiled libs (Google for β€œINSTALL_FAILED_NO_MATCHING_ABIS”).

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Another high speed, Intel will launch mass development of the 11th.
#Technologies
Forwarded from UNDERCODE NEWS
It would place a traffic limit for U.S. home broadband. Are Chinese operators going to follow up?
#International
Forwarded from UNDERCODE NEWS
Excel users would soon be enabled by Microsoft to connect co-authors to secure files.
#Updates
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

Read this before you got scammed with malware's:
Graphics and Image Data Representations:
------------------------------------------β€”β€”β€”β€”β€”β€”
+ 1-Bit Images
also "binary image"
+ 8-Bit Gray-Level Images
0x00 ~ 0xFF, gray scale
* Frame buffer / Video card
* Dithering
+ 24-Bit Colour Images
RGB / RGBA, where A -> alpha channel
+ 8-Bit Colour Images
+ Colour Lookup Tables
* LUTs / palette
* Devise a Color Lookup Table
* human are more sensitive to R & G than to B,
so we can shrink R & G range 0..255 into 0..7 (3bit), B 2bit.

+ GIF, Graphics Interchange Format
* Lempel-Ziv-Welch
* 8-Bit color
* GIF87a / GIF89a
_____________________
| [GIF Signature] |
| [Screen Descriptor] |
| [Global Color map] |
| ... |
| [Image descriptor] | | Repeated
| [Local colot map] | | 1 to n times.
| [Raster Data] |
|
| ... |
| [GIF Terminator] |
|_____________________|
* od -c a.gif

+ JPEG
+ PNG
+ PS/PDF
+ BMP(Windows)
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁