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า‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -

๐Ÿฆ‘How to Hack Website Using Kali linux (Nikto Tool)
full guide:
(instagram.com/UnderCodeTestingCompany)

๐Ÿฆ‘๐Ÿ„ป๐Ÿ„ด๐Ÿ…ƒ ๐Ÿ…‚ ๐Ÿ…‚๐Ÿ…ƒ๐Ÿ„ฐ๐Ÿ…๐Ÿ…ƒ:

> Nikto is a an open source software which acts as a web server scanner which performs multiple tests against web servers for many items which include 6500 potentially dangerous CGIs or files. It also checks for outdated versions of about 1250 servers. It also checks for about the problems on specific servers of about 270 kinds. It checks for server configuration items๐Ÿ˜ฑ.

1) open up Nikto on Kali Linux

> Kali Linux > Vulnerability Analysis > Misc Scanners > Nikto

2)Once you have opened up Nikto from the menu, you can see the help options by typing

> nikto -help

3) If you want to perform a database check then you need to type in

>nikto -dbcheck

4) If you want to update your software( which in this case you wonโ€™t need to as Kali Linux is not old enough, but you would need to update it in future) then type in

> nikto -update

3)Before and after updating the software you can check the version of the software and to do the same you need to type in
> nikto -Version

4) Now if in case you need to find out the plugins then you can type in nikto -list-plugins


5) Now, the real game, the vulnerability check can be done by typing in the following syntax :

> nikto -h ๐Ÿฆ‘

for example: nikto -h http://www.anything(domain).com

6) After that you will be showed a detailed scan and you will also get to know how you will be able to penetrate the website.

> for example, you may get a message that shall tell you that Attackers may be able to crash FrontPage by requesting a DOS Device.


> By pressing any of the below you can turn on or off the following features even during an active scan.
SPACE โ€“ Report current scan status
v โ€“ Turn verbose mode on/off
d โ€“ Turn debug mode on/off
e โ€“ Turn error reporting on/off
p โ€“ Turn progress reporting on/off
r โ€“ Turn redirect display on/off
c โ€“ Turn cookie display on/off
o โ€“ Turn OK display on/off
a โ€“ Turn auth display on/off
q โ€“ Quit
N โ€“ Next host
P โ€“ Pause

> Protect yourself & don t clone our tutorials

Written By Mr. BotNet (t.m.)
- - - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -
- - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -

๐Ÿฆ‘What Is Cross-Site Scripting (XSS)?
FULL DEFACE & SECURE
(Twitter.com/UnderCodeTC)

1) Cross-site scripting is a method bad actors use to exploit communications between users and applications.

2) When attackers succeed at finding vulnerabilities, they can use web applications to send malicious scripts to another end user. Attackers can then impersonate users to gain access to sensitive data. In worst case scenarios, when users have privileged access to a site, an attacker can take over entire applications.

3) The longer an attacker has access, the more vulnerable users across a site become, and once the malicious script is executed on a user browser, the attacker has increased ability to carry out phishing, cookie theft, and keylogging. That's why it's critical to put the appropriate security measures in placeโ€”but strong security requires a deep understanding of exactly how attackers might move against you, and visibility into all suspicious behavior on your network.

4) Because cross-site scripting allows attackers to hide inside seemingly-legitimate communications, which are almost always going to be encrypted via the HTTPS protocol, decryption capabilities are absolutely crucial in spotting these attacks and others.

5) Let's take a look at a few of the ways bad actors use cross-site scripting, and then we'll outline defensive strategies you can use to protect your applications.

๐Ÿฆ‘How Do Attackers Use Cross-Site Scripting?

1) There are three primary forms of cross-site scripting. Reflected XSS occurs when malicious script is sent from the current HTTP request. Stored (or persistent) XSS occurs when malicious script is sent from the website's database. Document Object Model (or DOM) based XSS occurs when the vulnerability is on client-side code instead of server-side.
Reflected XSS

2) In a reflected XSS attack, a user unknowingly requests malicious javascript code from a website. When a response gets sent back from the website, it includes a snippet of malicious javascript. These attacks can be particularly successful in situations where the attacker uses URL shorteners to hide their malicious code from users. If you have ever seen content pop up on your social media feed that lacks context, includes a shortened URL, or looks out of character for the person posting it, you may have come across a bad guy behind the scenes.
Stored (Persistent) XSS

3) In a stored (or persistent) XSS attack, it's not the application that's the target, but its users. As an example, attackers can trick users by placing malicious code on message boards or blog comment fields. Every time a user views an infected page, it gets transmitted to the victim's browser in the form of the malicious javascript file.
DOM-Based XSS

4) A Document Object Model (DOM) is an API that defines the logical structure of HTML and XML documents. The DOM represents the page so programs can change the document content, style and structure. DOM-based attacks occur when a web app writes data to the DOM before proper data sanitization occurs. If an attacker manages to modify the DOM environment with a malicious payload, the client-side code will execute that payload when the compromised script runs. Unlike request or response models of XSS, DOM-based attacks can be complex to troubleshoot because they involve in-depth analysis of code flow.

๐Ÿฆ‘How To Prevent Cross-Site Scripting

5) There are lots of ways to protect against cross-site scripting, but for our purposes, we'll focus on three examples: sanitizing user input, validating user input, and utilization of a content security policy. (For a piece of more in-depth information, go to the OWASP Cross Site Scripting Prevention Cheat Sheet.)
Sanitize User Input

6) Sanitizing user input such as GET requests and cookies will immediately put you in a better place against XSS attacks.
This method of defense is helpful for sites that allow HTML markup that may need a data scrub to eliminate unacceptable or harmful user input.
Validate User Input

7) Input validation (or data validation) is the process of testing all user or application inputs and blocks inaccurately formed data from entering an information system. This OWASP cheat sheet maintains that user input validation isn't a silver-bullet solution for XSS prevention, but it can help by preventing users from inserting special characters into dropdown fields in forms.

๐Ÿฆ‘Utilize a Content Security Policy

8) A content security policy is a standard that helps define rules to block malicious content by only allowing particular kinds of content from safe sources. A content security system instructs a user's browser only to allow content served from a specific domain.
When Prevention Isn't Enough

9) Security analysts must be proactive in securing their systems to stay on top of detecting malicious code, but there's only one way to confidently manage the risk of an XSS attack: guaranteeing that your security team has the ability to detect strange behavior in what might, on the surface, look like legitimate traffic.

๐Ÿฆ‘That means a.) close collaboration between all the groups who know your attack surface well, and b.) a monitoring tool that supports secure, scalable decryption and analysis of encrypted traffic.

@า‰ า‰Mา‰rา‰.า‰ า‰Bา‰oา‰tา‰Nา‰eา‰tา‰(t.m)

- - - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -
FULL GUIDES 2019
T.me/UnderCodeTestingOfficial
๐Ÿ˜Š
- - - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -

๐Ÿฆ‘BEST CREDIT CARD GENERATOR SITES SOME INCLUDE MONEY
> CAN GENERATRE MILLIARS CREDIT CARDS
(instagram.com/UnderCodeTestingCompany)

๐Ÿฆ‘๐Ÿ„ป๐Ÿ„ด๐Ÿ…ƒ ๐Ÿ…‚ ๐Ÿ…‚๐Ÿ…ƒ๐Ÿ„ฐ๐Ÿ…๐Ÿ…ƒ:

1) PAYPALL

> https://developer.paypal.com/developer/creditCardGenerator/

2) Valid Credit Card Generator and Validator

> https://www.creditcardrush.com/credit-card-generator/

3) Credit Card Numbers Generator

> http://www.getcreditcardnumbers.com/

4) Generate Credit Card Number from Bank Name - BIN Codes

> https://www.creditcardrush.com/

5)Visa Credit Card Generator | Generate Valid Credit Card Numbers

> https://www.getcreditcardinfo.com/

6) generatevisacreditcard.php
Credit Card Generator | Fake Person Generator

> https://www.fakepersongenerator.com/credit-card-generator

7) Generate Validate MasterCard credit card numbers Generator online

> https://www.getnewidentity.com/mastercard-credit-card.php
VISA Credit Card Generator With Money (Valid Credit Card Generator)

>https://www.creditcardrush.com/visa-credit-card-generator/


@ฬถฬ ฬธฬ› ฬฬนMฬถฬ†rฬตฬ‡.ฬถฬ อ›อ ฬดฬBฬตฬ… ฬนoฬตอ’tฬท ฬ›อ‘nฬถฬ ฬอ“eฬดอ‘tฬดฬŽ อŒฬ (ฬตอ’tฬด อ’ฬฝ.ฬธอ„mฬถฬ’ ฬ‘อ–.ฬทฬ‘
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘STRESSING TOOLS TUTORIAL by undercOde:
(instagram.com/UnderCodeTestingCompany)

๐Ÿฆ‘Slowhttptest
Slowhttptest is one of the DoS attacking tools. It especially uses HTTP protocol to connect with the server and to keep the resources busy such as CPU and RAM. Letโ€™s see in detail how to use it and explain its functions.

๐Ÿฆ‘๐Ÿ„ป๐Ÿ„ด๐Ÿ…ƒ ๐Ÿ…‚ ๐Ÿ…‚๐Ÿ…ƒ๐Ÿ„ฐ๐Ÿ…๐Ÿ…ƒ:

COMMANDS:

1) To open slowhttptest, first open the terminal and type โ€œslowhttptest โ€“parametersโ€.

2) You can type โ€œslowhttptest โ€“hโ€ to see all the paramenters that you need to use. In case you receive an output, โ€˜Command not foundโ€™ you have to first type

> โ€œapt-get install slowhttptestโ€.

3) Show Http Test
Command Not Found

> Then after installation, again type slowhttptest โ€“h

4) Slow Headers
Type the following command โˆ’

> slowhttptest -c 500 -H -g -o outputfile -i 10 -r 200 -t GET โ€“u
http://192.168.1.202/index.php -x 24 -p 2

5) All Stress testing test will be done on metsploitable machine which has IP of 192.168.1.102

6) SO :

(-c 500) = 500 connections

(-H) = Slowloris mode

-g = Generate statistics

-o outputfile = Output file name

-i 10 = Use 10 seconds to wait for data

-r 200 = 200 connections with -t GET = GET requests

-u http://192.168.1.202/index.php = target URL

-x 24 = maximum of length of 24 bytes

-p 2 = 2-second timeout


@ฬถฬ ฬธฬ› ฬฬนMฬถฬ†rฬตฬ‡.ฬถฬ อ›อ ฬดฬBฬตฬ… ฬนoฬตอ’tฬท ฬ›อ‘nฬถฬ ฬอ“eฬดอ‘tฬดฬŽ อŒฬ (ฬตอ’tฬด อ’ฬฝ.ฬธอ„mฬถฬ’ ฬ‘อ–.ฬทฬ‘
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
- - - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -

๐Ÿฆ‘STRESSING TOOL TUTORIAL 2 BY UNDERCODE:
(Facebook.com/UnderCodeTestingCompanie):

๐Ÿฆ‘๐Ÿ„ป๐Ÿ„ด๐Ÿ…ƒ ๐Ÿ…‚ ๐Ÿ…‚๐Ÿ…ƒ๐Ÿ„ฐ๐Ÿ…๐Ÿ…ƒ:

Inviteflood>
Inviteflood is a SIP/SDP INVITE message flooding over UDP/IP. It executes on a variety of Linux distributions. It carries out DoS (Denial of Service) attacks against SIP devices by sending multiple INVITE requests.

๐Ÿฆ‘Commands:
( it s kali tool installed par default)
1) To open Inviteflood, first open the terminal and type โ€œinviteflood โ€“parametersโ€

> For help, you can use โ€œinviteflood โ€“hโ€

2) Next, you can use the following command โˆ’

> inviteflood eth0 target_extension target_domain target_ip number_of_packets

3) its show like this Example:

target_extension is 2000

target_domain is 192.168.x.x

target_ip is 192.168.x.x

number_of_packets is 1

-a is alias of SIP account

๐Ÿฆ‘THAT S ALL YOU NOW USING STRESS TOOL

@า‰ า‰Mา‰rา‰.า‰ า‰Bา‰oา‰tา‰Nา‰eา‰tา‰(t.m)

- - - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -
A person who breaks in to a computer through a network, without authorization and with mischievous or destructive intent.
๐Ÿฆ‘Crash
A hardware or software problem that causes information to be lost or the computer to malfunction. Sometimes a crash can cause permanent damage to a computer.

๐Ÿฆ‘Cursor
A moving position-indicator displayed on a computer monitor that shows a computer operator where the next action or operation will take place.

๐Ÿฆ‘Cyberspace
Slang for internet ie. An international conglomeration of interconnected computer networks. Begun in the late 1960s, it was developed in the 1970s to allow government and university researchers to share information. The Internet is not controlled by any single group or organization. Its original focus was research and communications, but it continues to expand, offering a wide array of resources for business and home users.

๐Ÿฆ‘Database
A collection of similar information stored in a file, such as a database of addresses. This information may be created and stored in a database management system (DBMS).

๐Ÿฆ‘Debug
Slang. To find and correct equipment defects or program malfunctions.

๐Ÿฆ‘Default
The pre-defined configuration of a system or an application. In most programs, the defaults can be changed to reflect personal preferences.

๐Ÿฆ‘Desktop publishing
The production of publication-quality documents using a personal computer in combination with text, graphics, and page layout programs.

๐Ÿฆ‘Directory
A repository where all files are kept on computer.

๐Ÿฆ‘Disk
Two distinct types. The names refer to the media inside the container:

A hard disc stores vast amounts of data. It is usually inside the computer but can be a separate peripheral on the outside. Hard discs are made up of several rigid coated metal discs. Currently, hard discs can store 15 to 30 Gb (gigabytes).

A floppy disc, 3.5" square, usually inserted into the computer and can store about 1.4 megabytes of data. The 3.5" square floppies have a very thin, flexible disc inside. There is also an intermediate-sized floppy disc, trademarked Zip discs, which can store 250 megabytes of data.

๐Ÿฆ‘Disk drive
The equipment that operates a hard or floppy disc.

๐Ÿฆ‘Domain
Represents an IP (Internet Protocol) address or set of IP addresses that comprise a domain. The domain name appears in URLs to identify web pages or in email addresses. For example, the email address for the First Lady is first.lady@whitehouse.gov, whitehouse.gov, being the domain name. Each domain name ends with a suffix that indicates what top level domain it belongs to. These are : .com for commercial, .gov for government, .org for organization, .edu for educational institution, .biz for business, .info for information, .tv for television, .ws for website. Domain suffixes may also indicate the country in which the domain is registered. No two parties can ever hold the same domain name.

๐Ÿฆ‘Domain name
The name of a network or computer linked to the Internet. Domains are defined by a common IP address or set of similar IP (Internet Protocol) addresses.

๐Ÿฆ‘DOS
Disk Operating System. An operating system designed for early IBM-compatible PCs.

๐Ÿฆ‘Drop-down menu
A menu window that opens vertically on-screen to display context-related options. Also called pop-up menu or pull-down menu.

๐Ÿฆ‘DSL
Digital Subscriber Line, a method of connecting to the Internet via a phone line. A DSL connection uses copper telephone lines but is able to relay data at much higher speeds than modems and does not interfere with telephone use.

๐Ÿฆ‘Emoticon
A text-based expression of emotion created from ASCII characters that mimics a facial expression when viewed with your head tilted to the left. Here are some examples:

Smiling
Frowning
Winking
Crying

๐Ÿฆ‘Encryption
The process of transmitting scrambled data so that only authorized recipients can unscramble it. For instance, encryption is used to scramble credit card information when purchases are made over the Internet.

๐Ÿฆ‘Gopher
An Internet search tool that allows users to access textual information through a series of menus, or if using FTP, through downloads.

๐Ÿฆ‘GUI
Graphical User Interface, a system that simplifies selecting computer commands by enabling the user to point to symbols or illustrations (called icons) on the computer screen with a mouse.

๐Ÿฆ‘Groupware
Software that allows networked individuals to form groups and collaborate on documents, programs, or databases.

๐Ÿฆ‘Hacker
A person with technical expertise who experiments with computer systems to determine how to develop additional features. Hackers are occasionally requested by system administrators to try and break into systems via a network to test security. The term hacker is sometimes incorrectly used interchangeably with cracker. A hacker is called a white hat and a cracker a black hat.

๐Ÿฆ‘Hard copy
A paper printout of what you have prepared on the computer.


๐Ÿฆ‘Virtual reality (VR)
A technology that allows one to experience and interact with images in a simulated three-dimensional environment. For example, you could design a room in a house on your computer and actually feel that you are walking around in it even though it was never built. (The Holodeck in the science-fiction TV series Star Trek : Voyager would be the ultimate virtual reality.) Current technology requires the user to wear a special helmet, viewing goggles, gloves, and other equipment that transmits and receives information from the computer.

wฬฝอ“rฬฝอ“iฬฝอ“tฬฝอ“tฬฝอ“eฬฝอ“nฬฝอ“ ฬฝอ“bฬฝอ“yฬฝอ“ ฬฝอ“Mฬฝอ“rฬฝอ“.ฬฝอ“ ฬฝอ“Bฬฝอ“oฬฝอ“tฬฝอ“Nฬฝอ“eฬฝอ“tฬฝอ“ ฬฝอ“(ฬฝอ“tฬฝอ“.ฬฝอ“mฬฝอ“.ฬฝอ“)ฬฝอ“

- - - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -
- - - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -

๐Ÿฆ‘Iaxflood
Iaxflood is a VoIP DoS tool. To open it, type โ€œiaxflood sourcename destinationname numpacketsโ€ in the terminal.
(t.me/UnderCodeTestingOfficial)

๐Ÿฆ‘๐Ÿ„ป๐Ÿ„ด๐Ÿ…ƒ ๐Ÿ…‚ ๐Ÿ…‚๐Ÿ…ƒ๐Ÿ„ฐ๐Ÿ…๐Ÿ…ƒ:

1) This tools by offensive security

2) designed for kali and installed per default

3) To know how to use, type

> โ€œiaxflood โ€“hโ€

Then it Show :

usage: iaxflood sourcename destinationname numpackets

PLZ use this Dos Stress tool For Learning

@ฬถฬ ฬธฬ› ฬฬนMฬถฬ†rฬตฬ‡.ฬถฬ อ›อ ฬดฬBฬตฬ… ฬนoฬตอ’tฬท ฬ›อ‘nฬถฬ ฬอ“eฬดอ‘tฬดฬŽ อŒฬ (ฬตอ’tฬด อ’ฬฝ.ฬธอ„mฬถฬ’ ฬ‘อ–.ฬทฬ‘
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–
Hacking Email Accounts ๐Ÿฆ‘.pdf
1.8 MB
Computer_Networking_Principles_Bonaventure.pdf
10.7 MB
โ„๐•’๐•”๐•œ_๐”ฝ๐•ฅ๐•ก_๐•Š๐•–๐•ฃ๐•ง๐•–๐•ฃ_๐•‹๐•–๐•ค๐•ฅ๐•–๐••_๐Ÿฆ‘.pdf
787.9 KB
๐”น๐•’๐•ค๐•š๐•”_โ„•๐•–๐•ฅ๐•จ๐• ๐•ฃ๐•œ๐•š๐•Ÿ๐•˜๐Ÿฆ‘.pdf
1.2 MB
Hacking_the_industrial_network_USversion.pdf
1.1 MB
FAST CRACKING METHODE ๐Ÿฆ‘.pdf
515.8 KB
โ– โ–‚ โ–„ ๏ฝ•๐•Ÿ๐”ปโ’บ๐ซฤ†๐”ฌ๐““โ“” โ–„ โ–‚ โ–

๐Ÿฆ‘LEAKED NSA TOOL Use Only If YOu are Pro Hacker
(T.me/UnderCodeTestingOfficial)

๐Ÿฆ‘The goal of this project is to examine, reverse, and document the different modules available in the Equation Group's DanderSpritz post-exploitation framework leaked by the ShadowBrokers:

๐Ÿฆ‘FOR INSTALLISATION:

1) This repository alone is not enough to run DanderSpritz.

If you're interested in viewing the entire contents of the leak use this repo:

> EQGRP_Lost_in_Translation:
https://github.com/x0rz/EQGRP_Lost_in_Translation

2) Decrypted content of odd.tar.xz.gpg, swift.tar.xz.gpg and windows.tar.xz.gpg

> NOW:

> Downloaded from https://yadi.sk/d/NJqzpqo_3GxZA4 Original post from the #ShadowBrokers https://steemit.com/shadowbrokers/@theshadowbrokers/lost-in-translation

๐Ÿฆ‘SO After Get the full Python Packages What this illegal tool can do ?

1) windows: contains Windows exploits, implants and payloads
swift

2) contains operational notes from banking attacks
oddjob: docs related to the ODDJOB backdoo

Written by Mr. BotNet(tm)
- - - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -
- - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - -

๐Ÿฆ‘FULL CARDING 2019 BY undercOde:
(t.me/UnderCodeTestingOfficial)

๐Ÿฆ‘๐•ƒ๐•–๐•ฅ ๐•ค ๐•Š๐•ฅ๐•’๐•ฃ๐•ฅ:

A) What is Carding??

> Carding is term described as a trick whereby products are being shopped/ordered from any online shops e.g Amazon, Jumia, FlipKart using Fake Cards(Credit/Debit).

๐Ÿฆ‘Who is a Carder ??

A carder is referred to as a man who make uses of Hacked credit card details or buys credit cards from Credit card shops, or even pick up Credit Cards from Dumps Via DarkWeb for the purpose of carding online shops.

๐Ÿฆ‘What You Will Need To Start Carding:

1) Computer or Laptop

2) Socks (Compulsory, But some people do use VPN, but itโ€™s advisable to use Socks)

3) Mac Address Changer (Compulsory)

4) CCleaner

5) RDP (is optional,but itโ€™s advisable to use it for security purposes)

6) Drop (optional but itโ€™s advisable to use it for more Secured shopping sites)

7) Cc (Credit Card)


๐Ÿฆ‘Keypoints In Carding Method:-

1) Computer:

For carding always use a computer. I know some other carders uses a mobile device, but it is less secure and involves more risk.

2) SOCKs:

SOCKS (SOCKet Secure). It is an internet protocol which allows network packets between a client and server traffic pass through a proxy server, so your real IP is hidden and proxy IP get showed.

๐Ÿฆ‘We use this for the purpose of matching our location same with the Credit Card owner Location to make a successful transaction. And also it doesnโ€™t leak your DNS details but VPN do, so itโ€™s more secure than VPN.

3) MAC Address Changer:

MAC stands for Media Access Control. It is the unique address of every Network Interface Card (NIC), so the work of MAC address changer is to give you another MAC Address for the better anonymousity and safety.

4) CCleaner:

It is very useful tool to clean your browsing history help in cleaning your browsing history, cookies, temp files, etc. But many people neglect this part and they get caught, so please make use you take note of this part.

5) RDP (Remote Desktop Protocol):

RDP It is protocol developed by Microsoft which provides users with a graphical interface to connect a computer to another computer over the network.

๐Ÿฆ‘i.e carders uses it to connect someone else computer while carding, using someone else PC to card from their own Computer.. mainly for anonymity purpose.

6) Drop:

> DROP is an address which the you uses for the shipping address in the carding ops.

> If you are carding with a USA Credit card, then you need to use a USA address as shipping address then your order will be shipped successfully and safely, and you your self will be safe.

> So If you have relative or friends, then no problem, otherwise make use of sites that provides drop services only if you can pay extra for shipping.

7)Credit Card (CC):

This part is main,,sensitive and important part of carding,so calm down and read gently, Any credit card it is in the following format:

| credit card Number |Exp Date| CVV2 code | Name on the Card | Address | City | State | Country | Zip code | Phone # (sometimes not included depending on where you get your credit card from)|

e.g: (randomly taken number/details)

| 4305873969346315 | 05 | 2018 | 591 | UNITED STATES | Dave Washington | 201 |
Stoney Brook Lane | Washingtonton | MA | 01949 |

> IN NEXT TUTORIAL WILL SEND START
Written by Mr. BotNet(tm)
- - - - - - Uา‰Nา‰Dา‰Eา‰Rา‰Cา‰Oา‰Dา‰Eา‰- - - - -