Giter Site home page Giter Site logo

ccextrap's Introduction

Hi ๐Ÿ‘‹, I'm Handoko

  • ๐Ÿ’ป Beginner fullstack web development
  • ๐ŸŒฑ Iโ€™m currently learning Codeigniter 3, Codeigniter 4, Laravel, Bootstrap
  • ๐Ÿ’ฌ Ask me about html, css, javascript, php, mysql, java netbeans
  • ๐Ÿ“ซ How to reach me [email protected]
  • ๐Ÿ“„ Know about my experiences https://www.linkedin.com/in/hndko/

My Skill Set

Frontend

HTML5 Tailwind CSS Bootstrap CSS3 JavaScript Sass

Backend

Laravel Java PHP Oracle CodeIgniter MySQL

Connect with me


Github Stats


ccextrap's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ccextrap's Issues

Not working

Warning: Attempt to read property "error" on null in F:\laragon\www\CCEXTRAP\cc.class.php on line 133

php fatal error

PHP Fatal error: Uncaught Error: Call to undefined function curl_init() in /root/CCEXTRAP/cc.class.php:122
Stack trace:
#0 /root/CCEXTRAP/cc.class.php(43): CC->Check('783736387614617...')
#1 /root/CCEXTRAP/run.php(14): CC->Execute()
#2 {main}
thrown in /root/CCEXTRAP/cc.class.php on line 122

Error

I can't find a way to fix this error:

details:

  • Windows 10 64bits
  • PHP 8.1.10 (cli) (built: Aug 30 2022 18:08:04) (NTS Visual C++ 2019 x64)
    Copyright (c) The PHP Group
    Zend Engine v4.1.10, Copyright (c) Zend Technologies

`C:\Users\User\Desktop\BOT-TLG\CCEXTRAP>php run.php

Deprecated: Optional parameter $color declared before required parameter $text is implicitly treated as a required parameter in C:\Users\User\Desktop\BOT-TLG\CCEXTRAP\cc.class.php on line 15
###############################################

Auto Generate + Checker CC Extrap

###############################################

Create By : Kyuoko

Code : PHP

Thx To UKL-TEAM, GFS-TEAM, AND YOU

###############################################
[+] BIN : 552004
[+] Check Status Valid ? 1/0 : 1
[+] Amount/Jumlah : 3
###############################################
{~} Starting generation
###############################################

Fatal error: Uncaught Error: Call to undefined function curl_init() in C:\Users\User\Desktop\BOT-TLG\CCEXTRAP\cc.class.php:122
Stack trace:
#0 C:\Users\User\Desktop\BOT-TLG\CCEXTRAP\cc.class.php(43): CC->Check('552004825809912...')
#1 C:\Users\User\Desktop\BOT-TLG\CCEXTRAP\run.php(14): CC->Execute()
#2 {main}
thrown in C:\Users\User\Desktop\BOT-TLG\CCEXTRAP\cc.class.php on line 122

C:\Users\User\Desktop\BOT-TLG\CCEXTRAP>php --version
PHP 8.1.10 (cli) (built: Aug 30 2022 18:08:04) (NTS Visual C++ 2019 x64)
Copyright (c) The PHP Group
Zend Engine v4.1.10, Copyright (c) Zend Technologies`

imagen

False / Live

Hello Kyo,

I was wondering if you would be so kind to take a look to your script which is very good and for me its working fine, In the case of cc gen but not in the validation, the script is giving false lives ..

Thanks in advance,
Regards

Try This Code

bin = $bin; $this->check = $check; $this->jml = $jml; } private function color($color, $text) { $arrayColor = [ 'grey' => '1;30', 'red' => '1;31', 'green' => '1;32', 'yellow' => '1;33', 'blue' => '1;34', 'purple' => '1;35', 'nevy' => '1;36', 'white' => '1;0', ]; return "\033[" . $arrayColor[$color] . "m" . $text . "\033[0m"; } public function execute() { echo "###############################################\n"; echo "{~} Starting generation\n"; echo "###############################################\n"; sleep(5); if ($this->check < 1) { $this->generateCreditCards(); } else { $this->checkCreditCards(); } } protected function generateCreditCards() { for ($i = 1; $i <= $this->jml; $i++) { echo $this->extrapolateCreditCard($this->bin) . "\n"; sleep(1); } } protected function checkCreditCards() { for ($i = 1; $i <= $this->jml; $i++) { $card = $this->extrapolateCreditCard($this->bin); echo $this->checkCreditCard($card) . "\n"; sleep(1); } } protected function extrapolateCreditCard($bin) { $ccNumber = $this->generateRandomNumber($bin); if (preg_match_all("#x#si", $bin)) { $ccNumber = str_split($ccNumber); $replace = ""; foreach ($ccNumber as $cc => $key) { $replace .= str_replace("x", rand(0, 9), $key); } $complete = $this->calculateCheckDigit($replace); } else { $complete = $this->calculateCheckDigit($ccNumber); } return $complete . $this->generateYears(); } protected function generateRandomNumber($bin) { $ccNumber = $bin; while (strlen($ccNumber) < (16 - 1)) { $ccNumber .= rand(0, 9); } return $ccNumber; } protected function calculateCheckDigit($ccnumber) { $sum = 0; $pos = 0; $reversedCCnumber = strrev($ccnumber); while ($pos < strlen($ccnumber) - 1) { $odd = $reversedCCnumber[$pos] * 2; if ($odd > 9) { $odd -= 9; } $sum += $odd; if ($pos != (strlen($ccnumber) - 2)) { $sum += $reversedCCnumber[$pos + 1]; } $pos += 2; } $checkDigit = ((floor($sum / 10) + 1) * 10 - $sum) % 10; $ccnumber .= $checkDigit; return $ccnumber; } protected function generateYears() { $randMonth = str_pad(rand(1, 12), 2, '0', STR_PAD_LEFT); $randYears = str_pad(rand(20, 25), 2, '0', STR_PAD_LEFT); $randCvv = str_pad(rand(10, 800), 3, '0', STR_PAD_LEFT); return "|$randMonth|20$randYears|$randCvv"; } protected function checkCreditCard($card) { $headers = [ 'origin: https://amznloot.com', 'accept-language: id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7', 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36', 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8', 'Accept: */*', 'referer: https://amznloot.com/cc-checker/', 'X-Requested-With: XMLHttpRequest', 'Connection: keep-alive', ]; $ch = curl_init(); $options = [ CURLOPT_URL => "https://amznloot.com/cc-checker/api.php", CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => "data=" . urlencode($card), CURLOPT_HTTPHEADER => $headers, ]; curl_setopt_array($ch, $options); $exec = curl_exec($ch); $status = json_decode($exec); switch ($status->error) { case '2': return $card . $this->color("red", " [ DIE ]"); break; case '3': return $card . $this->color("grey", " [ UNKNOWN ]"); break; case '4': return $card . $this->color("yellow", " [ CC NOT VALID ]"); break; case '1': return $card . $this->color("green", " [ LIVE ]"); break; } } } // Example Usage: $creditCardChecker = new CreditCardChecker('123456', 1, 5); $creditCardChecker->execute();

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.