ASK ME ANYTHING: A PROFESSIONAL HACKER, CARDER AND BANK LOGGER

Member
Joined
May 23, 2025
Messages
24
Reaction score
146
Points
28
Hello everyone, I've been hacking and frauding for about 8 years now and have been in the game for a very long time hence this thread; if anyone has any questions about carding, hacking, banks, I will answer them to the best of my ability. Fire away.
 
  • Like
Reactions: yixiaojiu

Premium Member
Joined
September 4, 2024
Messages
111
Reaction score
28
Points
28
Hello everyone, I've been hacking and frauding for about 8 years now and have been in the game for a very long time hence this thread; if anyone has any questions about carding, hacking, banks, I will answer them to the best of my ability. Fire away.
Where can I buy discounted cryptocurrency gift cards, or discounted gift cards, on the dark web? I am very interested in this area.
 
Member
Joined
May 23, 2025
Messages
24
Reaction score
146
Points
28
hey, best marketplace for carding?
With markets like archetype, abacus and incognito gone either through fbi seizure, exit scamming or straight up blackmailing like that ashole rui siang lin or /u/Pharoah, owner of incognito. Markets for ccs and carding in general are kinda limited but for now, darkmatter and torzon are a few good ones together with nexus market.

If you're in for bank logs, markets are not a good place for them cos the ones you'll find there won't come with enough features that youre eventually gonna need for login and transactions
 
Member
Joined
May 23, 2025
Messages
24
Reaction score
146
Points
28
what the truster and best market to buy ?
With markets like archetype, abacus and incognito gone either through fbi seizure, exit scamming or straight up blackmailing like that ashole rui siang lin or /u/Pharoah, owner of incognito. Markets for ccs and carding in general are kinda limited but for now, darkmatter and torzon are a few good ones together with nexus market.

If you're in for bank logs, markets are not a good place for them cos the ones you'll find there won't come with enough features that youre eventually gonna need for login and transactions
 
Member
Joined
May 23, 2025
Messages
24
Reaction score
146
Points
28
Where can I buy discounted cryptocurrency gift cards, or discounted gift cards, on the dark web? I am very interested in this area.
they don't exist sadly, the ones you'll find will only try to scam you, why not do plays that can actually make you money instead, like banks, loans, crypto loadups etc.
 
  • Like
Reactions: yixiaojiu
Member
Joined
July 16, 2025
Messages
7
Reaction score
0
Points
1
How do you convert carding -> to cash/XMR. what is the safest method how much money can carding bring $ daily?
 
Member
Joined
May 23, 2025
Messages
24
Reaction score
146
Points
28
How do you convert carding -> to cash/XMR. what is the safest method how much money can carding bring $ daily?
Carding, around $20-$50 and up to $200-$400 per card if you get really lucky and have a good enough method. Its technically peanuts and not worth the stress.

Bank logs on the other hand, around $3k-$5k and could go up as high as $7k-$15k per bank log piece, that's if your bank log is feature rich and you also have a solid method. I think I posted a few methods in the past, some of them still works.
 
Member
Joined
May 23, 2025
Messages
24
Reaction score
146
Points
28
Where I can find the CODE TO ACCESS API application program
The code to access an API app program varies depending on the specific API you're trying to use. However, I can provide you with a general example of how to access an API using a popular programming language like Python.
Here's a simple example of how to access a REST API using Python's requests library:


import requests

# Replace 'https://api.example.com/data' with the actual API endpoint URL
url = 'https://api.example.com/data'

# Replace 'user_key' with the actual key or token required for authentication
headers = {
'Authorization': 'Bearer user_key'
}

response = requests.get(url, headers=headers)

if response.status_code == 200:
data = response.json()
print(data)
else:
print(f"Failed to retrieve data. Status code: {response.status_code}")


In this example, we're making a GET request to the API endpoint specified by the url variable. The headers dictionary is used to include any required authentication information in the request headers. The response object contains the server's response to the request, and we can access the data returned by the API using response.json().
The specific API endpoint URL, authentication method (if any), and data retrieval method will vary depending on the API you're trying to use. You'll need to refer to the API documentation for details on how to construct requests and handle responses.

Here are some popular APIs that you might be interested in:

REST Countries API (REST Countries) - A RESTful API for country information.

JSONPlaceholder API (JSONPlaceholder - Free Fake REST API) - A simple fake REST API for testing and prototyping.

The Weather API (Weather API - OpenWeatherMap) - A free weather data API that provides current weather data, forecasts, and more.

The Movie Database API (TMDb) (https://www.themoviedb.org/documentation/api) - A comprehensive movie and TV database API.
 
Member
Joined
May 23, 2025
Messages
24
Reaction score
146
Points
28
Can I get algorithm and pseudocode for building a checker. #goveverione #endingmedemise #abcelementary #qai+additive #botcontrol #check2veri #theydoam.


I don't know wht kind of checker you're talking about but for reference, this is just a basic checker that will take a card number as input and check its validity using the Luhn algorithm but you get the point. It will also check if the card has expired.

function check_card(card_number, exp_date):
// Remove any spaces or hyphens from the card number
card_number = card_number.replace(" ", "").replace("-", "")

// Check if the card number has 16 digits
if len(card_number) != 16:
return "Invalid card number length"

// Check if the card number is a valid credit card number using Luhn algorithm
if not luhn_check(card_number):
return "Invalid card number"

// Check if the card has expired
if exp_date < current_date():
return "Card has expired"

return "Card is valid"

function luhn_check(card_number):
sum = 0
for i in range(len(card_number) - 1, -1, -2):
digit = int(card_number)
digit *= 2
if digit > 9:
digit -= 9
sum += digit

for i in range(len(card_number) - 2, -1, -2):
sum += int(card_number)

return sum % 10 == 0


Algorithm:
Remove any spaces or hyphens from the card number.

Check if the card number has 16 digits. If not, return "Invalid card number length".

Check if the card number is a valid credit card number using the Luhn algorithm. If not, return "Invalid card number".

Check if the card has expired by comparing the expiration date with the current date. If it has expired, return
"Card has expired".

If all checks pass, return "Card is valid".

thua luhn_check function implements the Luhn algorithm, which is used to validate credit card numbers:

Start from the rightmost digit and double every second digit.

If the result is a two-digit number, subtract 9 from it.

Add up all the digits.

If the total is a multiple of 10, the card number is valid. Otherwise, it's invalid.
 

Premium Member
Joined
September 4, 2024
Messages
111
Reaction score
28
Points
28
they don't exist sadly, the ones you'll find will only try to scam you, why not do plays that can actually make you money instead, like banks, loans, crypto loadups etc.
Thanks buddy, can you share the cryptocurrency loading, or similar providers;
 
Advanced Member
Joined
January 1, 2025
Messages
224
Reaction score
25
Points
28
Nah I don't get the point, appears to be like an indirect message to myself if uah saying I get the point. It's more of a stalker alert, money doubler et.c or view response, it doesn't sound professional, it's more of like talking about bots in the physical not cyberspace and when rippers think about death Instead of statuses that get them a ban or bvn number in regarding to club membership, or resellers that buy from the Ru scene and claim to be hackers on the english boards, hero's or villains, friends or foes, l33t or lamers, attention seekers, notice me, if you catch my drift, people that can't differentiate between entertainment and the real world, lgbtqai+ practitioners without license or citizenship, in regards to illegallities, you get the point? It's not in of that sort in the hacker culture, more of like issues on PHrack on usernames from dumps to appear legit that originals. #out #doenormismatch
 
  • Tags
    bank carder hacker professional professional hacker
  • Top