User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 16
  6. 17
  7. 18
  8. 19

Posts by Migh

  1. Migh Houston
    Hes not even responding to my thread...
  2. Migh Houston
    Originally posted by frala If he’s a mentally deficient pretentious cunt don’t you imagine he’s struggling to pay attention to me?

    Fuck off nigger.

    Dont.
  3. Migh Houston
    Needs to pay more attention to me.

    Jerk
  4. Migh Houston
    Originally posted by ⠀⠀⠀⠀⠀⠀ Even better, become a serial killer killer.

    Become a serial killer killer, killer.

    Become a serial number killer.

    Or just become a serial.
  5. Migh Houston
    Originally posted by maddie you honestly could just buy those badge creator things on amazon, etc then, get an RFID badge reader and scan a few badges, get the creds from that, and use those codes on your badges yeah?

    No for generating tens of thousands of high quality id scans...
  6. Migh Houston
    The picture in your OP is all about a casino, which is why I think it is a casino related term.
  7. Migh Houston
    The rakeback is part of the casino and nothing to do with crypto.

    It is just a rebate for the house fees.

    https://www.quora.com/What-does-rakeback-mean
  8. Migh Houston
    Seems legit.
  9. Migh Houston
    This program would not be for making physical fake id, it would only be used for generating high quality scans of id(usually used for account verification).
  10. Migh Houston
    A program that is fed drivers license data(Name, DL#, DOB, etc) and outputs a high quality scan of state identification. Would require lots of photo editing. This could result in a profitable business.

    Proceed with questions and comments.
  11. Migh Houston

    package com.lanny.things;

    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.util.ArrayList;

    public class Nir {

    public static ArrayList<int[]> numberSet;
    public static String number1 = "4343404100000000";
    public static String number2 = "4343404199999999";
    public static String numberToCheck = "4343404105441234";
    public static int[] checkNumber;
    public static boolean check = false;
    public static boolean writeToFile = false;

    public static void main(String[] args) throws Exception {
    if (!check){
    numberSet = new ArrayList<int[]>();
    int[] a = new int[16], b = new int[16];
    for (int i = 15; i > -1; i--){
    a[i] = number1.charAt(i) - 48;
    b[i] = number2.charAt(i) - 48;
    }
    createList(a, b);
    for (int n = 0; n < numberSet.size(); n++){
    int[] temp = numberSet.get(n);
    for (int i = 0; i < 16; i++){
    System.out.print(temp[i]);
    }
    System.out.println();
    }
    } else {
    checkNumber = new int[16];
    for (int i = 15; i > -1; i--){
    checkNumber[i] = numberToCheck.charAt(i) - 48;
    }
    System.out.println(isValid(checkNumber)?"Valid":"Not Valid");
    }
    }

    public static void createList(int[] range1, int[] range2){
    while(!equals(range1, range2)){
    if (isValid(range1)){
    int[] temp = new int[16];
    for (int i = 0; i < 16; i++){
    temp[i] = range1[i];
    }
    numberSet.add(temp);
    if (writeToFile){
    try {
    File file = new File("/home/lanny/Desktop/NumberList");
    BufferedWriter output = new BufferedWriter(new FileWriter(file, true));
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < 16; i++){
    sb.append(temp[i]);
    }
    output.write(sb.toString() + "\n");
    output.close();
    } catch (IOException e) {e.printStackTrace();}
    }
    }
    range1 = increment(range1);
    }
    }

    public static boolean isValid(int[] n){
    int total = 0;
    for (int i = 15; i > -1; i--){
    if (i % 2 != 0){
    total = total + n[i];
    } else {
    Integer temp = n[i] + n[i];
    int tempt = 0;
    for (int x = 0; x < temp.toString().length(); x++){
    tempt = tempt + Integer.parseInt(String.valueOf(temp.toString().charAt(x)));
    }
    total = total + tempt;
    }
    }
    return (total % 10 == 0);
    }

    public static int[] increment(int[] i){
    int[] returner = i;
    boolean finished = false;
    int s = 15;
    while (!finished){
    if (i[s] != 9){
    returner[s]++;
    finished = true;
    } else {
    returner[s] = 0;
    s--;
    }
    }
    return returner;
    }

    public static boolean equals(int[] range1, int[] range2){
    for (int i = 0; i < 16; i++){
    if (range1[i] != range2[i]) return false;
    }
    return true;
    }

    }
  12. Migh Houston
    Are you actually coding it yourself or are you using a 'website creator' program?

    Sounds like your coding it yourself.
  13. Migh Houston
    I got into human trafficing because I was horny and started buying prostitutes.
  14. Migh Houston
    I haveat least one I wrote that list CC numbers using the Luhn algorithum. It's in Java though(I made an Android app as well but that one is for something else...). Not sure if thats allowed here.
  15. Migh Houston
    You know, taking a break from breaking the law.

    I'm only going to parasite on the lower levels. No more big hits. Just a small time little shit.

    I've been pushing it a bit and figure its time to think about myself and just take a break.

    It'll be nice having this off my conscience. Just being a normal everyday person that parasites just a little.
  16. Migh Houston
    Originally posted by ⠀⠀⠀⠀⠀⠀ Hate to break this to you, but you'd be arrested and jailed, not sued.

    But first there would be an investigation and court procedings.
  17. Migh Houston
    Hope I dont get shawdow sued for my gift card shenanigans.
  18. Migh Houston
    After this one, Im finished. I may do it again, really small, but not this big.

    Im going to stick with the smaller things.
  19. Migh Houston
    Originally posted by blaster master gift cards?

    Dave and Buster Chips and cash
  20. Migh Houston
    Just made $40k+ for end of year scheme.

    Old burner is destroyed and gone as well as other evidence.

    I got $40k+ in 2019 right before the pandemic. Same fraud scheme. Like taking candy from a baby.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 16
  6. 17
  7. 18
  8. 19
Jump to Top