User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 143
  6. 144
  7. 145
  8. 146
  9. 147
  10. 148
  11. ...
  12. 154
  13. 155
  14. 156
  15. 157

Posts by SBTlauien

  1. SBTlauien African Astronaut
    I am. I actually have a decent idea for something that I need but not quite the skills. I have most of the skills but I need to learn(or find somebody) that knows a little bit about RasPi development(as far as the physical part goes). It's a security related thing. Searching for something already like it and I come up emptyhanded.
  2. SBTlauien African Astronaut
    Just buy your drugs online.
  3. SBTlauien African Astronaut
    I thought it would be good at the end of the video, kind of like a beheading video where the music starts at the action.
  4. SBTlauien African Astronaut
  5. SBTlauien African Astronaut
    The older I get, the more important smart work becomes.
  6. SBTlauien African Astronaut
    What others places can you get?

    Would you give me a free one?
  7. SBTlauien African Astronaut
    Well I get these for near free and its all about material possesion in my apartment.
  8. SBTlauien African Astronaut
    Best thing to do is buy either a prepaid hotspot or a cheap smart phone(and root it), fund it with cash via reload cards, and then connect through the internet using that. You could then use TOR to make it harder to track down that device. They could still use triangulation though. Replace the hotspot device/phone regularly and use some strong encryption on your hard drive.
  9. SBTlauien African Astronaut
    330

  10. SBTlauien African Astronaut
    oh and have you had the chance to analyze the andromeda botnet "sample" i have sent you yet?

    I have not.

    I actually don't have this app on github.
  11. SBTlauien African Astronaut
    This is a short little program I wrote that'll find and print out all valid(passing the Luhn algorithm) credit card numbers within a range. I didn't use any existing code that's out there(although I knew I could have). Did I go about it in the best way? Does the code look okay? What could I have done differently?


    import java.util.ArrayList;

    public class Nir {

    public static ArrayList<int[]> numberSet;
    public static String number1 = "4358806222700000";
    public static String number2 = "4358806222709999";

    public static void main(String[] args) throws Exception {
    numberSet = new ArrayList<int[]>();
    int[] a = new int[16];
    int[] 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();
    }
    }

    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);
    }
    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;
    }
    }
    if (total % 10 == 0) {
    return true;
    } else {
    return false;
    }
    }

    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. SBTlauien African Astronaut
    I actually watch BMX videos regularly, as I use to ride. I've noticed a huge difference. These people ride huge bikes.

    This is more what I use to do...

    https://www.youtube.com/watch?v=HOXq6cau-yY

  13. SBTlauien African Astronaut
    I must be out of order, because I actually started with Web Applications Hackers Handbook, then learned JAVA, and have had your #1 book but haven't read it yet. I'm ready to dive in again with a goal of no drinking alcohol all next year and at least improving my Android security App that I started.
  14. SBTlauien African Astronaut
    Im going tto start working on getting my cash funds up.
  15. SBTlauien African Astronaut
    Nitro.
  16. SBTlauien African Astronaut
    I'm 5' 11" and I went up to 185 lbs only because I knew Id lose it over summer. Im at 165 right now and I havent really been working out or eating very healthy. Currently at a bar drinking. Gain it if you know you can lose it.
  17. SBTlauien African Astronaut
    Ill buy some IF you can send me the track 1 and track 2 data so that I can write my own cards. Most people dont like giving out their address.
  18. SBTlauien African Astronaut
    I have another way that I can get a 3D printer with a small amount of work and some prospective investments.
  19. SBTlauien African Astronaut
    This year was kind of shit. I got about $2200 worth of shit, no 3D printer though, and I went bigger last year. Last year I got over $3000 worth of shit, includding my Surface Pro 3. People just arent giving this year.
  20. SBTlauien African Astronaut
    Id like more customizations of the forum. People like these kinds of things and it could attract new people, which is what we need.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 143
  6. 144
  7. 145
  8. 146
  9. 147
  10. 148
  11. ...
  12. 154
  13. 155
  14. 156
  15. 157
Jump to Top