
johndoe1990
Junior Member-
Content count
9 -
Joined
-
Last visited
Community Reputation
1 NeutralAbout johndoe1990

-
Rank
Newbie
-
Since obviously all the tool contained inside your toolkit are executable... as a genius i have been able to point that your rigs are to be used under a windows OS ... which bring me to notice and share what for me is probly the most necessary tools and probly most usefull either when gathering first information to begin with or for more in-depth information gathering and reversing. Usually you woudnt need to get this tool since it already built-in most Linux Operating System and can be simply runned from Command prompt but in order to use it on Windows (for whatever reason one would have in it mind to make reversing attempt under a Win system.. which dont make any sense to me) NMAP Nmap ("Network Mapper") is a free and open source (license) utility for network discovery and security auditing. Official Sources: https://nmap.org/ Example of a representative Nmap scan: Nmap scan report for scanme.nmap.org (74.207.244.221) Host is up (0.029s latency). rDNS record for 74.207.244.221: li86-221.members.linode.com Not shown: 995 closed ports PORT STATE SERVICE VERSION 22/tcp open ssh OpenSSH 5.3p1 Debian 3ubuntu7 (protocol 2.0) | ssh-hostkey: 1024 8d:60:f1:7c:ca:b7:3d:0a:d6:67:54:9d:69:d9:b9:dd (DSA) |_2048 79:f8:09:ac:d4:e2:32:42:10:49:d3:bd:20:82:85:ec (RSA) 80/tcp open http Apache httpd 2.2.14 ((Ubuntu)) |_http-title: Go ahead and ScanMe! 646/tcp filtered ldp 1720/tcp filtered H.323/Q.931 9929/tcp open nping-echo Nping echo Device type: general purpose Running: Linux 2.6.X OS CPE: cpe:/o:linux:linux_kernel:2.6.39 OS details: Linux 2.6.39 Network Distance: 11 hops Service Info: OS: Linux; CPE: cpe:/o:linux:kernel TRACEROUTE (using port 53/tcp) HOP RTT ADDRESS [Cut first 10 hops for brevity] 11 17.65 ms li86-221.members.linode.com (74.207.244.221) Nmap done: 1 IP address (1 host up) scanned in 14.40 seconds
-
http://updates.buddyauths.com/GetVersion?filter=demonbuddy
-
So how it work is actually pretty simple, strafe is :1 EF: Rclick Rov: Lclick You press 1 only once and it will keep strafing until you press 1 again, then you trow 1x EF and it will automaticly do the 2 missing one for Rov, Then you trow Rov. So you only need to click 1/3 rather then 4/3 and EF will always cast at maximum speed for your Rov to be up more often. #NoEnv ;recommended for performance and compatibility with future AutoHotkey releases #SingleInstance #InstallKeybdHook #InstallMouseHook #UseHook SendMode Input ;recommended for new scripts due to its superior speed and reliability. SetFormat Float, 0.8 ;increase precision from default 6 decimal points CoordMode, Mouse, Screen ;make MouseMove exact not only when on desktop ;SetWorkingDir %A_ScriptDir% ; /////////////////////////////////////////////////////////////////////////// ; Change the following as you like: StrafeKey = 1 ;1-key EvasFireKey = RButton ;right mouse button StopMacroTriggerKey = LButton ;left mouse button EvasFireDelay := 570 ;time between casts of evasive fire in milliseconds EvasFireShots := 4 ; /////////////////////////////////////////////////////////////////////////// Center := {} Center.X := A_ScreenWidth / 2 Center.Y := A_ScreenHeight / 2 * 0.935185 ;don't use the exact half because char stands slightly above that Pi := 3.141592653 IsRequestedStop := 0 IsHeldStrafeKey := 0 #IfWinActive, Diablo III Hotkey, $%StrafeKey%, StrafeLabel Hotkey, ~%StopMacroTriggerKey%, StopLabel Hotkey, ~$%EvasFireKey%, EvasiveFireLabel return ; --== Suspend ==-- ~Insert::Suspend KeyWait, Insert GetKeyState, InsertState, Insert, T if InsertState = D { Suspend, Off } else { Suspend, On } return ; --== ==-- ; --== Strafe ==-- StrafeLabel: if IsHeldStrafeKey { Send {%StrafeKey% up} } else { Send {%StrafeKey% down} } IsHeldStrafeKey := !IsHeldStrafeKey return ; --== ==-- ; --== Stop ==-- StopLabel: IsRequestedStop := 1 return ; --== ==-- ; --== Evasive Fire ==-- EvasiveFireLabel: MouseGetPos, xPos, yPos pEnemyDirection := {} pEnemyDirection.X := xPos pEnemyDirection.Y := yPos ; Withdraw: withdrawPos := rotate(Center, pEnemyDirection, Pi) ;rotate by 180 degrees withdrawPos := changeRadius(Center, withdrawPos, 20) ;don't apply a 180 rotation but set withdrawPos closer to the Center MouseMove, withdrawPos.X, withdrawPos.Y IsRequestedStop := 0 loopsLeft := EvasFireShots Loop { loopsLeft -= 1 if (loopsLeft < 1) { break } Sleep, EvasFireDelay if (IsRequestedStop or !IsHeldStrafeKey) { break } MouseGetPos, xPos, yPos pPlayerCursor := {} pPlayerCursor.X := xPos pPlayerCursor.Y := yPos MouseMove, pEnemyDirection.X, pEnemyDirection.Y Send {%EvasFireKey%} MouseMove, pPlayerCursor.X, pPlayerCursor.Y } return ; --== ==-- aTan2(x, y) { return dllcall("msvcrt\atan2","Double",x, "Double",y, "CDECL Double") } calculateAngle(p0, p1) { xDelta := p1.X - p0.X yDelta := (p1.Y - p0.Y) * -1 return aTan2(yDelta, xDelta) } rotate(p0, p1, angleOffset) { xDelta := abs(p0.X - p1.X) yDelta := abs(p0.Y - p1.Y) radius := sqrt(xDelta * xDelta + yDelta * yDelta) p1Angle := calculateAngle(p0, p1) p1NewAngle := p1Angle + angleOffset newX := radius * Cos(p1NewAngle) + p0.X newY := radius * Sin(p1NewAngle) + p0.Y newY := newY + (p0.Y - newY) * 2 return {X: newX, Y: newY} } changeRadius(p0, p1, radius) { angle := calculateAngle(p0, p1) newX := p0.X + radius * Cos(angle) newY := p0.Y - radius * Sin(angle) return {X: newX, Y: newY} }
-
#include <iostream> #include <string> #include <time.h> #include <stdlib.h> #include <fstream> using namespace std; int main() { // DATA ENTRY BEGIN -------------------------------------------------------- system("cls"); unsigned short int error=0; string poss;//POSSIBLE CHARACTER COMBINATIONS unsigned short int pass;//MAXIMUM PASSWORD LENGTH string password; //ACTUAL PASSWORD unsigned short int found=0; cout << "SELECT CHARACTER SET:\n\n"; cout << "\t1. abcdefghijklmnopqrstuvwxyz\n"; cout << "\t2. ABCDEFGHIJKLMNOPQRSTUVWXYZ\n"; cout << "\t3. 0123456789\n\n"; cout << "\t4. 1&2\n"; cout << "\t5. 1&2&3\n"; cout << "\t6. Other\n\t"; cout << "----------------------------------\n\t"; unsigned short int choice; // SELECTION FROM CHARACTER SET string dataset; //STRING FOR CHARACTER SET cin >> choice; switch ( choice ) { case 1 : // Process for test = 1 dataset="abcdefghijklmnopqrstuvwxyz"; break; case 2 : // Process for test = 5 dataset="ABCDEFGHIJKLMNOPQRSTUVWXYZ"; break; case 3 : // Process for test = 5 dataset="0123456789"; break; case 4 : // Process for test = 5 dataset="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; break; case 5 : // Process for test = 5 dataset="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; break; case 6 : // Process for all other cases. cout << "\nENTER YOUR OWN CHARACTER SET: "; cin >> dataset; break; default : error=1; } if(error==0){ poss=dataset; cout << "\nENTER PASSWORDS MAXIMUM LENGTH: "; cin >> pass; unsigned short int i=0; while(poss) { i++; } int pass_array[pass-1]; unsigned short int j=0; while(j<pass) { pass_array[j]=0; j++; } unsigned short int comb_max=i-1; // SIZE OF COMBINATIONS ARRAY signed short int pass_max=j-1; // MAXIMUM SIZE OF PASSWORD signed short int pointer; //POINTER WILL EQUAL THE CURRENT PASS SIZE // THIS ENABLES THE FLOATING POINT TO CHANGE THE COMBINATIONS unsigned int counter=0; // COUNTER FOR EACH COMBINATION TRY // DATA ENTRY END ---------------------------------------------------------- // OPENS THE TEXT FILE TO WRITE PASSWORDS TO ofstream myfile; myfile.open ("c:\\passwords.txt"); // ----------------------------------------- // ---- start timer ---- time_t start,end; double dif; time (&start); while(pass_max>=0) { do { pointer=pass_max; while(pass_array[pointer]<=comb_max) { string curr;// CURRENT PASSWORD TRY counter++; j=0; while(j<=pass_max) { curr+= poss[pass_array[j]]; j++; } myfile << curr << " \n"; pass_array[pointer]=pass_array[pointer]+1; } pass_array[pointer]=0; pointer--; while(pass_array[pointer]==comb_max) { pass_array[pointer]=0; pointer--; } pass_array[pointer]=pass_array[pointer]+1; } while(pointer>=0); pass_max--; } // ---- end timer ---- end: time (&end); dif = difftime (end,start); // ---- close text file ---- // myfile.close(); // ------------------------- // // ----- DISPLAY RESULTS ---- // unsigned int combinations_per_second; combinations_per_second=counter/dif; system("cls"); cout << "\nWORDLIST CREATED"; cout << "\n------------------------------"; cout << "\nRUN TIME:\t " << dif << " sec"; cout << "\nCOMBINATIONS:\t " << counter; cout << "\nCOMB/SEC: \t " << combinations_per_second; cout << "\n\n\n"; system("pause"); return 0; }else{ cout << "\tINVALID CHOICE!"; system("pause"); } }
-
oh interesting then that my b misunderstood the programs taugh it was a common hi-jacker nvm what i say then.
-
@Suspense This a scan to the 'navigation server' and the dbuddy host, seems like we are blocked, or the port used to communicate via 'navigation' have been blocked (80 or 443 should obviously be the one used for navigation 22 is the one for ssh auth ^^) legit Auth works fines, so i guess they have blocked the hi-jack. Seems logic to me ,only the cracked Auth doesnt work
-
edited
-
yup same here first taugh it was a AV issue blocking it or something like that, seems like the hi-jacker is down :C i could probly auth to dbuddy with little to no effort ^^ but i dont have either ipb nor https server so unless someone have an https server while we wait for dev to fix it. I could send the SSH auth via https trough 443 probly.. Just need an Host B /user b i could auto log in to with Sudo Priv to create the ssh directory (if one is not already created)
-
so.. let see, here a little special programs im trying to get authed unsuccessfully for a while now. Il call it my little challenge. im not asking for someone to do it all for me, but i could obviously accept some help ..So im pissed of hydra it not enough strong for most of the job im trying to make with, free version from John is ridiiculous.. Just same as hydra wont be able to brute from a Psw list heavier then 500 mb while John Pro have a 20Gb list, a combo list creator etcetc.. Here we go girl the challenge is givin. Oh btw.. It an SSh Auth ^^ Application Name: John The Ripper 1.8.0 Pro for linux with upgrade and support (Fucking smtp wont resist me after i got that dang wordlist) Application Description: John The Ripper? ... Well it rippe and im fcking pissed of hydra returning 202 all the time. Application Download Link: https://sites.fastspring.com/openwallfs/instant/johnlus Official Webpage:http://www.openwall.com/john/pro/linux/
- 1108 replies