User Controls

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

Posts by SBTlauien

  1. SBTlauien African Astronaut
    Is the guy that standing on the stairs(in the 2nd picture), military?

    How much does it cost a day to live there?

    What is the quality of the drinking water?

    What is the food like and will you take pictures of a meal and list the price of it?

    Will you take pictures of street prostitutes?

    How many other white folk do you see on a day to day basis?

    Have you witnessed any violent crimes there?
  2. SBTlauien African Astronaut
    Any underage prostitutes?

    Imagine if you ran by and slapped that bowl off that woman's head.

    lol, these were actually the first two things that came to my mind.
  3. SBTlauien African Astronaut
    Dank as fuck brah, the jihad music really did it for me i can has, when finished? If you promise not to backdoor it, i can trade you some dank malware for it, if interested. Plus anything on my github you can use too, if you find it useful which i hope, SBTlauien-senpai.


    Sure thing. If I finish. I may pull out some things though.
  4. 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.
  5. SBTlauien African Astronaut
    Just buy your drugs online.
  6. 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.
  7. SBTlauien African Astronaut
  8. SBTlauien African Astronaut
    The older I get, the more important smart work becomes.
  9. SBTlauien African Astronaut
    What others places can you get?

    Would you give me a free one?
  10. SBTlauien African Astronaut
    Well I get these for near free and its all about material possesion in my apartment.
  11. 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.
  12. SBTlauien African Astronaut
    330

  13. 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.
  14. 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;
    }

    }
  15. 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

  16. 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.
  17. SBTlauien African Astronaut
    Im going tto start working on getting my cash funds up.
  18. SBTlauien African Astronaut
    Nitro.
  19. 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.
  20. 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.
  1. 1
  2. 2
  3. 3
  4. ...
  5. 143
  6. 144
  7. 145
  8. 146
  9. 147
  10. 148
  11. ...
  12. 155
  13. 156
  14. 157
  15. 158
Jump to Top