User Controls
Posts by SBTlauien
-
2015-12-21 at 4:16 PM UTC in I'm in MyanmarIs 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? -
2015-12-21 at 4:12 PM UTC in I'm in Myanmar
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. -
2015-12-21 at 3:22 PM UTC in Here is a video of the Android app I was working on
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. -
2015-12-19 at 8:15 PM UTC in Any wantreprenuers here?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.
-
2015-12-19 at 7:45 PM UTC in Prescription forgery with someone on the insideJust buy your drugs online.
-
2015-12-19 at 7:44 PM UTC in Here is a video of the Android app I was working onI thought it would be good at the end of the video, kind of like a beheading video where the music starts at the action.
-
2015-12-19 at 7:05 PM UTC in Here is a video of the Android app I was working on
-
2015-12-18 at 8:56 PM UTC in Hard work or Smart work - Which is important?The older I get, the more important smart work becomes.
-
2015-12-18 at 8:14 PM UTC in Starbucks & Wholefoods market gift cards at 65% "Order Now"What others places can you get?
Would you give me a free one? -
2015-12-17 at 5:42 PM UTC in How does my blu-ray collection look?Well I get these for near free and its all about material possesion in my apartment.
-
2015-12-17 at 5:36 PM UTC in Is tor really totally annonymous?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.
-
2015-12-17 at 2:27 AM UTC in How does my blu-ray collection look?
-
2015-12-16 at 9:36 PM UTC in IIT: we recommend eachother technical and cyber security books.
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. -
2015-12-16 at 9:34 PM UTC in Rate my Java programming skillsThis 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;
}
} -
2015-12-16 at 9:11 AM UTC in The bmx scene in texasI 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
-
2015-12-16 at 5:12 AM UTC in IIT: we recommend eachother technical and cyber security books.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.
-
2015-12-16 at 12:32 AM UTC in just my daily partying moneyIm going tto start working on getting my cash funds up.
-
2015-12-16 at 12:30 AM UTC in You're locked in jail cell and have to listen to one smash mouth song on a loopNitro.
-
2015-12-16 at 12:28 AM UTC in Should I become a fatass for a while?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.
-
2015-12-16 at 12:22 AM UTC in Starbucks & Wholefoods market gift cards at 65% "Order Now"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.