Jump to content

belly

Members
  • Posts

    2
  • Joined

  • Last visited

Recent Profile Visitors

379 profile views

belly's Achievements

Newbie

Newbie (1/14)

  1. hey, i wrote a small c program to generate a textfile that i translate via online-encoder. #include<stdio.h> int main() { FILE *datei; datei = fopen("test.txt", "w"); if (datei == NULL) { printf("Fehler beim oeffnen der Datei."); return 1; } fprintf(datei, "DELAY 5000\n"); int i; for(i=0; i<10; i++) { fprintf(datei, "STRING 0\nDELAY 700\nSTRING 0\nDELAY 700\nSTRING 0\nDELAY 700\nSTRING %i\nDELAY 700\nENTER\nDELAY 12500\n", i); } for(i=10; i<100; i++) { fprintf(datei, "STRING 0\nDELAY 500\nSTRING 0\nDELAY 500\nSTRING %i\nDELAY 1500\nENTER\nDELAY 7500\n", i); } for(i=100; i<1000; i++) { fprintf(datei, "STRING 0\nDELAY 500\nSTRING %i\nDELAY 1500\nENTER\nDELAY 7500\n", i); } for(i=1000; i<10000; i++) { fprintf(datei, "STRING %i\nDELAY 1500\nENTER\nDELAY 7500\n", i); } fclose(datei); return 0; } what i realized too is that you have to put in digit by digit, STRING 0001 ENTER is way too fast! I keep playing around with the different delays, by now my payload is able to run about two hours broodforcing an mbair but then something seems to go wrong cauz it only enters three digits after running two hours... i also realized theres differences between a macbook retina and a macbook air. i attached the .txt and .bin of my payload - if anyone is in intrested or has an idea i would love to figure out whats the problem! and a small video of the stick of the ducky starting to attack^^ https://www.facebook.com/video.php?v=10204806167131861&set=vb.1168804757&type=3&theater so long, belly payload (txt): http://www47.zippyshare.com/v/tXyo9I7o/file.html payload (bin): http://www47.zippyshare.com/v/8OKsSeUy/file.html
×
×
  • Create New...