en
Feedback
EFX TV Linux Tutorials

EFX TV Linux Tutorials

Open in Telegram

The EFX TV Telegram channel can be found at @efxtv2 @efxtv admin @errorfix_tv. For online education only.

Show more
No data
Subscribers
-424 hours
-207 days
-4130 days
Posts Archive
Repost from N/a
John the Ripper (often abbreviated as "John" or "JtR") is a popular open-source password cracking tool used to test password strength and recover lost passwords. It supports various password hash types and can perform brute-force and dictionary attacks. Here is a step-by-step guide to using John the Ripper to crack Linux passwords: ### Step 1: Install John the Ripper First, you need to install John the Ripper. On a Debian-based system (like Ubuntu), you can install it using the following command:
sudo apt-get update
sudo apt-get install john
### Step 2: Extract the Password Hashes Linux systems store password hashes in the /etc/shadow file, which is only readable by the root user. You need to extract these hashes and save them in a format that John the Ripper can understand. You can use the following command to extract password hashes from the /etc/shadow file:
sudo unshadow /etc/passwd /etc/shadow > mypasswords.txt
The `unshadow command combines /etc/passwd and /etc/shadow into a single file suitable for use with John the Ripper. ### Step 3: Run John the Ripper Now that you have the password hashes in mypasswords.txt, you can use John the Ripper to crack them. The basic command to run John the Ripper is: ``bash john mypasswords.txt
John will start by running a default wordlist attack. To see the current status of John while it's running, you can use:
bash john --status
To pause John, you can press `Ctrl+C`. To resume, use:
bash john --restore
### Step 4: Check Cracked Passwords

To see the passwords that John has successfully cracked, you can use:
bash john --show mypasswords.txt
### Step 5: Using a Custom Wordlist

John the Ripper can use custom wordlists to improve the chances of cracking passwords. You can specify a custom wordlist with the `--wordlist` option:
bash john --wordlist=/path/to/wordlist.txt mypasswords.txt
### Step 6: Advanced Cracking Techniques

John the Ripper supports advanced cracking techniques such as incremental mode, external mode, and rules-based attacks. For example, to use the incremental mode, which tries all possible password combinations up to a certain length, you can run:
bash john --incremental mypasswords.txt
For more options and detailed usage, you can refer to John the Ripper's documentation:
bash man john ` ### Important Note Using password cracking tools like John the Ripper should be done ethically and legally. Make sure you have permission to test the passwords you are attempting to crack. Unauthorized access to computer systems and data is illegal and unethical.

Repost from N/a
👉 Execute any comment on Linux 👉 Get output on telegram 👉 No port forwarding required 👉 Shell 24*7 🎦 watch this video

Repost from N/a
What is Docker? Ans. Docker is a set of platform as a service products that use OS-level virtualization to deliver software in packages called containers. The service has both free and premium tiers. The software that hosts the containers is called Docker Engine. It was first started in 2013 and is developed by Docker, Inc. What is containers? Docker image helps to create a container, What is vertulization? VM under under vm is known as Vertulization. # Google shell limitations The default weekly Cloud Shell quota is 50 hours. If you don't access Cloud Shell for 120 days, your home disk is deleted. Non-interactive sessions are ended automatically after one hour Cloud Shell sessions are capped at 12 hours session is inactive for 20 minutes, modifications that you made to it outside your $HOME $6.25 per TB # Install Kali Linux docker image in Google shell docker pull kalilinux/kali-last-release or docker pull docker.io/kalilinux/kali-rolling docker run --tty --interactive kalilinux/kali-rolling # Install metapackage (has no sudo or extra users) apt update;apt upgrade # Update $ apt update && apt -y install kali-linux-headless # To resume an exited container we will complete the following: docker images docker run --tty --interactive kalilinux/kali-rolling docker start d36922fa21e8 docker attach d36922fa21e8 # You can remove it with the following command $ docker rmi -f dockername or $ docker rm d36922fa21e8ls # Create a user adduser efxtv # Check if user is in sudos group or not groups username # Add user to root usergroup (-a =--apppend, -G=--groups GROUPS) usermod -aG sudo [username] # Another way to add user to sudos group (modify) sudo nano /etc/sudoers https://www.kali.org/docs/general-use/metapackages/ "From inetd" = refers to a method of running network services in Unix-like systems. In this approach, a service is started on-demand by the inetd (Internet services daemon) when a client connection is received. The inetd listens for incoming network connections on various ports and spawns the corresponding service to handle the request. This method is suitable for services with low traffic or intermittent usage. "Standalone"= refers to a mode in which a service or application runs independently as a standalone process without relying on another service, such as inetd, to start it. In this mode, the service typically listens on a designated port and continuously runs, ready to handle incoming connections or requests. Standalone mode is commonly used for services with high traffic or those requiring persistent availability. # INSTALL LINUX CHROME DESKTOP wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb sudo apt install ./chrome-remote-desktop_current_amd64.deb # XFCE Desktop Environment: sudo DEBIAN_FRONTEND=noninteractive apt install --assume-yes xfce4 desktop-base dbus-x11 xscreensaver #Start chrome remote desktop session sudo bash -c 'echo "exec /etc/X11/Xsession /usr/bin/xfce4-session" > /etc/chrome-remote-desktop-session' #Default lightdm because we will use chrome remote desktop sudo systemctl disable lightdm.service # Goto https://remotedesktop.google.com/?pli=1 >Access my computer > next > next > Copy debinan >Remote access click on online device Source https://pastebin.com/raw/CNGjDsaG

Repost from N/a
Here are the steps to install WSL 2 (Windows Subsystem for Linux 2) on Windows 10: - Enable Windows features - Open the "Run" dialog: Press Windows key + R to open the "Run" dialog. - Type "appwiz.cpl": In the "Run" dialog, type appwiz.cpl and press Enter. This command opens the "Programs and Features" window. - Click on the "Turn Windows features on or off" mark features shown in Image and press okay" 🌑 USING CMD: Install WSL2 In Windows 10 / 11 - Install Ubuntu Shell - Convert WLS 1 to WSL2 for better speed - Use Fastest Ubuntu Linux Shell in Windows 1. Open CMD as admin and run the command(setup user and password) $ wsl --install -d ubuntu 2. Update WSL to WSL2 $ wsl --update 3. Set Default WSL version $ wsl --set-default-version 2 4. Check the installed WSL version $ wsl --version 5. Open WSL shell Press the SHIFT key and Right click on the mouse in Any folder Click Open Linux Shell Here 🌑 USING POWERSHELL 1. Enable Virtual Machine Platform feature: - Open PowerShell as Administrator. - Run the command: $ dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart 2. Enable WSL feature: - In the same PowerShell window, run: $ dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart 3. Restart your computer. 4. Download and install the Linux kernel update package: - Go to the WSL 2 Linux kernel update package for x64 machines page. - Download the latest package. - Install the downloaded package. 5. Set WSL 2 as the default version: - Open PowerShell as Administrator. $ wsl --set-default-version 2 6. Install a Linux distribution from the Microsoft Store: - Open Microsoft Store. - Search for your preferred Linux distribution (e.g., Ubuntu, Debian, or Kali Linux). - Click on the distribution and then click "Install". 7. Set up the Linux distribution: - Once installed, launch the distribution from the Start menu. - Wait for the initial setup process to complete. This involves setting up a new user account and password. - After setup, you'll have a Bash shell prompt where you can start using Linux commands. 8. Optional: Install additional packages or customize your Linux environment as needed. That's it! You've now installed WSL 2 on your Windows 10 machine and set up a Linux distribution. You can launch it anytime from the Start menu or by running wsl in PowerShell or Command Prompt. ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ❤️        Join VIP @ERRORFIX_tv       ❤️ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Repost from N/a
Powerful android apk editor - aapt/aapt2 independent ⭐ This tool uses ARSCLib to edit any apk resources and has six main features 0- Help options
java -jar APKEditor.jar -h
1- Decompile ⭐ Decompiles resources of apk to human readable json string.
java -jar APKEditor.jar d -i path/to/your-file.apk
2- Build Builds back to apk from decompiled json/XML files
java -jar APKEditor.jar b -i path/to/decompiled-directory
3- Merge Merges multiple splitted apk files (directory, xapk, apkm, apks ...) to standalone apk
java -jar APKEditor.jar m -i path/to/input
4- Refactor (obfuscated resource) Refactors obfuscated resource entry names
java -jar APKEditor.jar p -i path/to/input.apk
5- Protect Protects apk resources against almost all known decompile/modify tools.
java -jar APKEditor.jar p -i path/to/input.apk
6- App Info ⭐ Prints/dumps from basic up to detailed information of apk.
java -jar APKEditor.jar info -v -resources -i input.apk 
7- Build executable JAR
./gradlew fatJar
✅ Download APKEditor.jar ✅ Source APKEditor.jar ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ ❤️        Join VIP 👉 Admin       ❤️ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Repost from N/a
John the Ripper (often abbreviated as "John" or "JtR") is a popular open-source password cracking tool used to test password strength and recover lost passwords. It supports various password hash types and can perform brute-force and dictionary attacks. Here is a step-by-step guide to using John the Ripper to crack Linux passwords: ### Step 1: Install John the Ripper First, you need to install John the Ripper. On a Debian-based system (like Ubuntu), you can install it using the following command:
sudo apt-get update
sudo apt-get install john
### Step 2: Extract the Password Hashes Linux systems store password hashes in the /etc/shadow file, which is only readable by the root user. You need to extract these hashes and save them in a format that John the Ripper can understand. You can use the following command to extract password hashes from the /etc/shadow file:
sudo unshadow /etc/passwd /etc/shadow > mypasswords.txt
The `unshadow command combines /etc/passwd and /etc/shadow into a single file suitable for use with John the Ripper. ### Step 3: Run John the Ripper Now that you have the password hashes in mypasswords.txt, you can use John the Ripper to crack them. The basic command to run John the Ripper is: ``bash john mypasswords.txt
John will start by running a default wordlist attack. To see the current status of John while it's running, you can use:
bash john --status
To pause John, you can press `Ctrl+C`. To resume, use:
bash john --restore
### Step 4: Check Cracked Passwords

To see the passwords that John has successfully cracked, you can use:
bash john --show mypasswords.txt
### Step 5: Using a Custom Wordlist

John the Ripper can use custom wordlists to improve the chances of cracking passwords. You can specify a custom wordlist with the `--wordlist` option:
bash john --wordlist=/path/to/wordlist.txt mypasswords.txt
### Step 6: Advanced Cracking Techniques

John the Ripper supports advanced cracking techniques such as incremental mode, external mode, and rules-based attacks. For example, to use the incremental mode, which tries all possible password combinations up to a certain length, you can run:
bash john --incremental mypasswords.txt
For more options and detailed usage, you can refer to John the Ripper's documentation:
bash man john ` ### Important Note Using password cracking tools like John the Ripper should be done ethically and legally. Make sure you have permission to test the passwords you are attempting to crack. Unauthorized access to computer systems and data is illegal and unethical.

Repost from N/a
Hashcat is another powerful password cracking tool that supports various types of attacks, including dictionary, brute-force, combinator, and rule-based attacks. It is known for its efficiency and speed, leveraging both CPU and GPU for cracking passwords. Here's how you can use Hashcat to crack Linux password hashes: ### Step 1: Install Hashcat First, you need to install Hashcat. On a Debian-based system (like Ubuntu), you can use the following commands:
sudo apt update
sudo apt install hashcat
### Step 2: Extract the Password Hashes Just like with John the Ripper, you need to extract the password hashes from the /etc/shadow file. Use the unshadow command to combine /etc/passwd and /etc/shadow:
sudo unshadow /etc/passwd /etc/shadow > mypasswords.txt
### Step 3: Identify the Hash Type Hashcat requires you to specify the hash type. The hash type for Linux passwords is typically SHA-512 (mode 1800), but you should verify the hash type. Here are some common hash types and their corresponding modes: - MD5: 500 - SHA-1: 100 - SHA-512: 1800 - bcrypt: 3200 ### Step 4: Prepare the Hash File Hashcat needs the hashes in a specific format. You can create a file containing only the hashes. For example, if your mypasswords.txt contains multiple fields, you can extract just the hash parts and save them in a new file called hashes.txt. Here's a simple example using awk to extract the second field (assuming the hash is in the second field):
awk -F: '{ print $2 }' mypasswords.txt > hashes.txt
### Step 5: Run Hashcat Now, you can run Hashcat. Here's the basic command structure:
hashcat -m 1800 -a 0 hashes.txt /path/to/wordlist.txt
- `-m 1800: Specifies the hash type (SHA-512). - -a 0: Specifies the attack mode (0 is for a dictionary attack). - hashes.txt: The file containing the hashes. - /path/to/wordlist.txt: The wordlist file to use for the dictionary attack. ### Step 6: Monitoring and Resuming Cracking You can monitor the progress of Hashcat with the status command: ``bash hashcat --status
To pause Hashcat, use:
bash hashcat --pause
And to resume:
bash hashcat --resume
### Step 7: Viewing Cracked Passwords

After Hashcat has finished, you can view the cracked passwords with:
bash hashcat -m 1800 --show hashes.txt
### Step 8: Advanced Cracking Techniques

Hashcat supports advanced cracking techniques, such as rule-based attacks, combinator attacks, and mask attacks. For example, to perform a brute-force attack, you can use:
bash hashcat -m 1800 -a 3 hashes.txt ?a?a?a?a?a?a
This command uses a mask attack (`-a 3`) with a mask `?a?a?a?a?a?a`, which tries all combinations of six characters (alphanumeric and symbols).

For more detailed options and configurations, you can refer to the Hashcat documentation or use:
bash hashcat --help ` ### Ethical Considerations As with any password cracking tool, ensure you have proper authorization before attempting to crack passwords. Unauthorized access to systems and data is illegal and unethical. Use these tools responsibly.

Repost from N/a
Rsync tutorial Commands are here Join VIP to Get Live Classes

How to Pin / password unlock 🔓 Android (upto 13) device Using Python 10 reaction to get the file How to Use Unlock.py: 💻 [ Download File.py ] 1. Install ADB: sudo apt install adb 2. Turn on WiFi and enable networking between Ubuntu and Android. 3. Enable ADB (USB debugging) on Android: - Go to *Settings* > *About phone* > Tap *Build number* 7 times to enable Developer options. - Go to *Settings* > *Developer options* > Enable *USB debugging*. 4. Connect the Android device to Ubuntu via USB. 5. Allow Ubuntu to connect to ADB on Android: - You might need to confirm the connection on your Android device by accepting the RSA key fingerprint. 6. Run the following commands to start and connect with Android via ADB: adb tcpip 5555 adb connect IP:5555 - Replace IP with the actual IP address of your Android device. 7. Run the Python script: python3 unlock.py wordlist.txt Share for more @efxtv

How to Pin / password unlock 🔓 Android (upto 13) device Using Python 10 reaction to get the file How to Use Unlock.py: 💻 [ Download File.py ] 1. Install ADB: sudo apt install adb 2. Turn on WiFi and enable networking between Ubuntu and Android. 3. Enable ADB (USB debugging) on Android: - Go to *Settings* > *About phone* > Tap *Build number* 7 times to enable Developer options. - Go to *Settings* > *Developer options* > Enable *USB debugging*. 4. Connect the Android device to Ubuntu via USB. 5. Allow Ubuntu to connect to ADB on Android: - You might need to confirm the connection on your Android device by accepting the RSA key fingerprint. 6. Run the following commands to start and connect with Android via ADB: adb tcpip 5555 adb connect IP:5555 - Replace IP with the actual IP address of your Android device. 7. Run the Python script: python3 unlock.py wordlist.txt Share for more @efxtv

Switching to Notepad++ as Your Default Text Editor Hey everyone, I just wanted to quickly show you how to replace the default Windows Notepad with Notepad++. Here's how you can do it: 1. Download Notepad++: Get it from [this link](https://notepad-plus-plus.org/downloads/). Install it once downloaded. 2. Update Registry Settings: - Open regedit. - Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options. - Create a new subkey named notepad.exe. - Inside notepad.exe, create a new String value called Debugger. - Edit the Debugger value and set it to wscript.exe "C:\Program Files\Notepad++\npp.vbs" (adjust the path if Notepad++ is installed elsewhere). 3. Download npp.vbs: - Get the script from [here](https://example.com/npp.vbs). - Place npp.vbs in a location of your choice, e.g., C:\Program Files\Notepad++\. 4. Test It: - Create a new text file on your desktop. - Double-click the file to open it. That’s it! If everything worked correctly, your text files should now open with Notepad++. Special thanks to the helpful users on the Notepad++ forum. Catch you in the next post. Bye! 😊 Share for more @efxtv

📁 Need to share files quickly? Here are some free file upload and sharing websites you can use: 🌐 FileBin: https://filebin.
📁 Need to share files quickly? Here are some free file upload and sharing websites you can use: 🌐 FileBin: https://filebin.net/ 🌐 GoFile: https://gofile.io/ 🌐 AnonFiles: https://anonfiles.com/ 🌐 MEGA: https://mega.co.nz/ 🌐 MediaFire: https://www.mediafire.com/ 🌐 InfoTomb: https://infotomb.com/m/welcome 🌐 ShareSend: http://sharesend.com/ 🌐 WSS Coding: http://www.wss-coding.com/upload 🌐 The Stark Army: https://thestarkarmyx.t.me/ 🌐 Zippyshare: http://zippyshare.com/ 🌐 File to Link: http://filetolink.com/ 🌐 Ge.tt: http://ge.tt/ 🌐 LargeDocument: http://largedocument.com/ 🌐 RGhost: http://rghost.net/ 🌐 Dox ABV: http://dox.abv.bg/files/share 🌐 SecureUpload: http://secureupload.eu/ Feel free to choose the one that suits your needs best! 📎 #FileSharing #FreeUploads Join for more @efxtv @efxtv2

Repost from Craxs RAT 7.6
Join for Craxs RAT v7.5 source ✨ https://t.me/+oEhIdj2W22k3YWI1
Join for Craxs RAT v7.5 source ✨ https://t.me/+oEhIdj2W22k3YWI1

▬ | EFX Tv Education Group 💳| Learn Ethical Hacking Training 📆| 98℅ Demo  📥| 02% Theory   🗺| DM: https://t.me/efxtv/3584 📹| Live Education And Playground ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬ EFX Educational GROUP CONTENT: ⭕️ | Payloads ⭕️ | Multiple Exploitation Methods ⭕️ | FUD DropExp ⭕️ | Post exploitation ⭕️ | CTF, Bug Bounty ⭕️ | EFXTv Tool Pack ⭕️ | Remote Code Execution ⭕️ | Exploit Via Link and Binary ⭕️ | RATs, Malware, etc For Practice ⭕️ | VPLE (Linux) ⭕️ | 1M+ Courses and Updates ⭕️ | Discussion and Support Center ⭕️ | Portable OS Plug and Play ⭕️ | Playground Powered With      ⌨️ Premium  Kali Tools      ⌨️ Premium Parrot OS hacks      ⌨️ Premium Black Box 📦       ⌨️ Premium Ubuntu Base      ⌨️ Premium Termux Hacks      ⌨️ 30+(Linux distribution) ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬ One-time fee lifetime access: 🍓 Free Tending Tools 🍓 Free VPS / Virtual PC 🍓 Free Exploits 🍓 Free Tutorials 🍓 Free Live Classes and Discussion 🍓 Free Docx 🔥🔥🔥🔥JOIN NOW🔥🔥🔥🔥 Pay and Get Approved 👇👇👇👇 ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬

🔍 Monitoring HTTPS Traffic Using mitmweb in Kali Linux 🔍 Monitor real time device traffic on: 🥶 Android 🥶 Windows 🥶 Linux 🥶 Other 1️⃣ Install mitmproxy: Begin by installing mitmproxy and mitmweb using the following commands in your terminal:
sudo apt update
sudo apt install mitmproxy
2️⃣ Start mitmweb: Launch mitmweb by running mitmweb in your terminal. Access the interface at http://127.0.0.1:8081/. 3️⃣ Configure SSL Interception: mitmproxy generates its own CA certificate. Follow these steps to configure SSL interception: - Go to mitm.it When prompted by , download the generated CA certificate (mitmproxy-ca-cert.pem). - Install this certificate in your browser or system's trust store to enable HTTPS traffic interception. 4️⃣ Monitor HTTPS Traffic: Visit any HTTPS website to view intercepted traffic in real-time via the mitmweb interface. ⚙️ Additional Tips: - Customize views with filters and explore options via the web interface. - Save intercepted traffic to a file using mitmdump -w filename.log. - Extend functionality with custom Python scripts. By following these steps, you can effectively analyze and monitor HTTPS traffic using mitmweb in Kali Linux. 🌐🔒

▬ | EFX Tv Education Group 💳| Learn Ethical Hacking Training 📆| 98℅ Demo  📥| 02% Theory   🗺| DM: https://t.me/efxtv/3584 📹| Live Education And Playground ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬ EFX Educational GROUP CONTENT: ⭕️ | Payloads ⭕️ | Multiple Exploitation Methods ⭕️ | FUD DropExp ⭕️ | Post exploitation ⭕️ | CTF, Bug Bounty ⭕️ | EFXTv Tool Pack ⭕️ | Remote Code Execution ⭕️ | Exploit Via Link and Binary ⭕️ | RATs, Malware, etc For Practice ⭕️ | VPLE (Linux) ⭕️ | 1M+ Courses and Updates ⭕️ | Discussion and Support Center ⭕️ | Portable OS Plug and Play ⭕️ | Playground Powered With      ⌨️ Premium  Kali Tools      ⌨️ Premium Parrot OS hacks      ⌨️ Premium Black Box 📦       ⌨️ Premium Ubuntu Base      ⌨️ Premium Termux Hacks      ⌨️ 30+(Linux distribution) ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬ One-time fee lifetime access: 🍓 Free Tending Tools 🍓 Free VPS / Virtual PC 🍓 Free Exploits 🍓 Free Tutorials 🍓 Free Live Classes and Discussion 🍓 Free Docx 🔥🔥🔥🔥JOIN NOW🔥🔥🔥🔥 Pay and Get Approved 👇👇👇👇 ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬

▬ | EFX Tv Education Group 💳| Learn Ethical Hacking Training 📆| 98℅ Demo  📥| 02% Theory   🗺| DM: https://t.me/efxtv/3584 📹| Live Education And Playground ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬ EFX Educational GROUP CONTENT: ⭕️ | Payloads ⭕️ | Multiple Exploitation Methods ⭕️ | FUD DropExp ⭕️ | Post exploitation ⭕️ | CTF, Bug Bounty ⭕️ | EFXTv Tool Pack ⭕️ | Remote Code Execution ⭕️ | Exploit Via Link and Binary ⭕️ | RATs, Malware, etc For Practice ⭕️ | VPLE (Linux) ⭕️ | 1M+ Courses and Updates ⭕️ | Discussion and Support Center ⭕️ | Portable OS Plug and Play ⭕️ | Playground Powered With      ⌨️ Premium  Kali Tools      ⌨️ Premium Parrot OS hacks      ⌨️ Premium Black Box 📦       ⌨️ Premium Ubuntu Base      ⌨️ Premium Termux Hacks      ⌨️ 30+(Linux distribution) ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬ One-time fee lifetime access: 🍓 Free Tending Tools 🍓 Free VPS / Virtual PC 🍓 Free Exploits 🍓 Free Tutorials 🍓 Free Live Classes and Discussion 🍓 Free Docx 🔥🔥🔥🔥JOIN NOW🔥🔥🔥🔥 Pay and Get Approved 👇👇👇👇 ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬

▬ | EFX Tv Education Group 💳| Learn Ethical Hacking Training 📆| 98℅ Demo  📥| 02% Theory   🗺| DM: https://t.me/efxtv/3584 📹| Live Education And Playground ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬ EFX Educational GROUP CONTENT: ⭕️ | Payloads ⭕️ | Multiple Exploitation Methods ⭕️ | FUD DropExp ⭕️ | Post exploitation ⭕️ | CTF, Bug Bounty ⭕️ | EFXTv Tool Pack ⭕️ | Remote Code Execution ⭕️ | Exploit Via Link and Binary ⭕️ | RATs, Malware, etc For Practice ⭕️ | VPLE (Linux) ⭕️ | 1M+ Courses and Updates ⭕️ | Discussion and Support Center ⭕️ | Portable OS Plug and Play ⭕️ | Playground Powered With      ⌨️ Premium  Kali Tools      ⌨️ Premium Parrot OS hacks      ⌨️ Premium Black Box 📦       ⌨️ Premium Ubuntu Base      ⌨️ Premium Termux Hacks      ⌨️ 30+(Linux distribution) ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬ One-time fee lifetime access: 🍓 Free Tending Tools 🍓 Free VPS / Virtual PC 🍓 Free Exploits 🍓 Free Tutorials 🍓 Free Live Classes and Discussion 🍓 Free Docx 🔥🔥🔥🔥JOIN NOW🔥🔥🔥🔥 Pay and Get Approved 👇👇👇👇 ▬▬▬▬▬▬⋆★⋆ ▬▬▬▬▬▬

Repost from Craxs RAT 7.6
CraxsRAT V7 Chinese version - All errors and problems in the original developer version have been resolved - Fixed the issue of slow screen control - A fully unpacked version is also available - We also have the option to modify your own version - block screen / lock / unlock Admin @deVL33014