Als Gast hast du nur eingeschränkten Zugriff!
Du bist nicht angemeldet und hast somit nur einen sehr eingeschränkten Zugriff auf die Features unserer Community.
Um vollen Zugriff zu erlangen musst du dir einen Account erstellen. Der Vorgang sollte nicht länger als 1 Minute dauern.
- Antworte auf Themen oder erstelle deine eigenen.
- Schalte dir alle Downloads mit Highspeed & ohne Wartezeit frei.
- Erhalte Zugriff auf alle Bereiche und entdecke interessante Inhalte.
- Tausche dich mich anderen Usern in der Shoutbox oder via PN aus.
AndroRat
#1
Geschrieben 15 March 2013 - 20:18 Uhr
Androrat is a client/server application developed in Java Android for the client side and in Java/Swing for the Server.
Technical matters:
The android application is the client for the server which receive all the connections.
The android application run as a service(not an activity) that is started during the boot. So the user does not need to interact with the service (Even though there is a debug activity that allow to configure the IP and the port to connect to).
The connection to the server can be triggered by a SMS or a call (this can be configured)
All the available functionalities are:
- Get contacts (and all theirs informations)
- Get call logs
- Get all messages
- Location by GPS/Network
- Monitoring received messages in live
- Monitoring phone state in live (call received, call sent, call missed..)
- Take a picture from the camera
- Stream sound from microphone (or other sources..)
- Streaming video (for activity based client only)
- Do a toast
- Send a text message
- Give call
- Open an URL in the default browser
- Do vibrate the phone
Download:
AV Scan geht leider nicht da es nichts zum scannen gibt.
Hat jemand schonmal erfahrungen damit gemacht und ist das nun ein RAT wo der Client auf dem PC läuft und der Server auf dem Smartphone??
Thanked by 3 Members:
|
|
#2
Geschrieben 16 March 2013 - 00:55 Uhr
Hat jemand schonmal erfahrungen damit gemacht und ist das nun ein RAT wo der Client auf dem PC läuft und der Server auf dem Smartphone??
so ist es. es handelt sich beim server um einen dienst der im hintergrund läuft und zu einem vps/root connectet. werde die tage ne ummodifizierte version von mir posten
,,Der blaue Baum" von Prohex (2020)
Thanked by 1 Member:
|
|
#3
Geschrieben 16 March 2013 - 01:10 Uhr
Thanked by 1 Member:
|
|
#4
Geschrieben 16 March 2013 - 20:47 Uhr
BELIEBT
Download:
- paranoy, loginman1, Flatrade und 16 anderen gefällt das
,,Der blaue Baum" von Prohex (2020)
Thanked by 50 Members:
|
|
#5
Geschrieben 17 March 2013 - 00:37 Uhr
Edit: Ok habs schon jetzt ist die frage wie Richte ich das jetzt alles ein damit es funktioniert .png' class='bbc_emoticon' alt='^^' /> Wäre Nice wenn jemand helfen kann
Bearbeitet von ReBBeL, 17 March 2013 - 00:52 Uhr.
#6
Geschrieben 17 March 2013 - 01:14 Uhr
What you will need:
- - Android Developer Tools ( download from: )
- - Java runtime installed (download from java website)
- - AndroRAT source (download from: )
- - Some basic java knowledge is recommened but not required
Getting started:
- - Download the developer tools, extract and run extracted_folder\eclipse\eclipse.exe
- - Should look like this:
Preparing the SDK:
</p><p>
First we will prepare the SDK to compile this one. The SDK came with the basic tools and libraries, but we need to download more packs to compile AndroRAT. In eclipse, click:
- - Window
- - Android SDK Manager
- - This should open:
I checked the Android App and it needs API level 2.2. THAT DOES NOT MEAN IT IS ONLY FOR 2.2 !!!
Its the minimum requirement, it will run in GingerBread 2.2 and up! (2.3, HC, ICS, JB)
- - Select these:
- - and click on install packages, accept anything that pops up, and wait for the download to finish. You might need to relaunch eclipse if you already openned it.
Compiling the APK:
Now go to:
- -File
- -New
- -Project
- - And select this:
- - On the new window, click browse and select this:
- - And click OK, this should appear:
notice that i already checked the project in the screenshot, do the same when you come to this point.
Now click finish and it will load the project into eclipse. (the project name is LauncherActivity )
Now, you can compile this app without problems, but it will ask you on startup (when installed on the phone and launched) for the IP adress of your server (your NO-IP host since you will hide behind that i assume). BUUUUT that wouldnt be much of a super secret rat now, would it? We will change this source later on to make it automaticly configure itself on startup and go to background (I will add that on a later date as Im a android developer who has a lot to do these days and as soon as I finish my next milestone I will update this)
You can click this button shown on the image to compile the apk (when asked as what you would compile it, select Android Application)
Note: the apk will be located in the bin folder inside the project folder!
Compiling the server:
Ok now lets compile the server
click on:
- -File
- -import
- - Now select this since this is an app for PC
- - Again, click on browse when the new window shows up, and select this:
The folder selected is AndroRat server in the src folder found inside the source archive downloaded from github.
Thats the java app which I already compile and is available on HF, but you will want to do it yourself later on as new versions come out.
- - Again, we have this screen, just tick the project and click on finish:
- - but what is that
- it shows an error on the project! Well lets take a look...
- - Right click on the project folder (in eclipse, the icon with the " ! " sign)
- - and on the new window select this on the left side:
- - and change to the tab from the screenshot (Libraries)
Now we see the culprit who caused the errors! Those libraries with the "x" mark arent found by eclipse, so we will delete them.
Select them all and click on "Remove" (on the right of the window)
Ok but this didnt solve much as the project still needs those libraries. Now we will load them. On the same window click this:
Navigate to here: (androrat-master\src\api)
You can see all those missing libraries now. Select them all and click on Open. They will be added to the project and we are nearly done now.
Click on OK and watch the errors dissapear.
Clean it is:
Now the final step, compile it.
Click on:
File
Export
And select this:
Set the options in the next screen to look like here:
Then click browse, and choose where it will be saved, like here:
Click finish and watch it compiling, you will get 2 warnings, click OK on each one and you can run the compiled jar file!
Result:
-- Modifying the apk to autoconfigure to our server --
Spoiler (Click to Hide)
OK this is really short and easy but I thought earlier it will take a bit more time so I didnt even try till I finished all my work lol. What you have to do is:
-open this class file (LauncherActivity):
-delete ALL its content and replace with this:
-edit the obvious parts:
Instead of the NOIP host you can ofc put your ip there but I dont recommend doing that..
-compile and you are good to go
didnt test it yet but it should work, leave feedback please so i can confirm it
EOF
Version Changes:
Spoiler (Click to Hide)
Version 1.0f
-Release
Version 1.1f
-Added the configuring the SDK part which I stupidly skipped earlier.
Version 1.2f
-Added the app modification to autoconfigure itself
- Holomaster und sub0 gefällt das
,,Der blaue Baum" von Prohex (2020)
Thanked by 2 Members:
|
|
#7
Geschrieben 17 March 2013 - 13:55 Uhr
#9
Geschrieben 17 March 2013 - 15:00 Uhr
DU musst den glaub ich aus de Source erstellen bin selber gerade überfragt/ überfordert :/Da mein englisch nicht besonders gut ist... Der Client ist ja nun schon fertig... Und ist das hier so wie bei einem "normalen" RAT das ich mit dem CLient einfach einen Server erstelle oder muss ich den aus dem Source erstellen?
Bearbeitet von ReBBeL, 17 March 2013 - 15:01 Uhr.
#10
Geschrieben 17 March 2013 - 15:22 Uhr
Also ich bekomme es nicht hin... Wenn es jemand geschaft hat und mir weiterhelfen kann bin ich für jede Hilfe dankbar
Bearbeitet von Avni, 17 March 2013 - 16:22 Uhr.
#12
Geschrieben 02 April 2013 - 07:11 Uhr
Es gibt eine sandbox für Android zum testen
und Anubis wurde nun auch für Android verfügbar gemacht
Edit: ich verweise mal ganz dreist auf den hier https://www.toolbase...lung/#entry1416
Bearbeitet von Sn0opY, 02 April 2013 - 08:45 Uhr.
- blue_eyed_devil gefällt das
Thanked by 1 Member:
|
|
#18
Geschrieben 10 April 2013 - 11:34 Uhr
war testsieger und hab auch slebst bissl getestet und hat alles erkannt, aber auch die tools zum HAcken werden als Risiko teils angesehn (steht dann aber bei)
habe CIA+Trustgo+Verbindungscheck.... fühle mich relativ sicher .png' class='bbc_emoticon' alt='^^' />
wer ganz krass drauf is nimmt dann noch Simko+crypto karte aber die kostet $$$
Thema | Forum | Themenstarter | Statistik | Letzter Beitrag | |
---|---|---|---|---|---|
AndroRat Tool Binder-Builder |
Mobile | asokone |
|
|
|
[TUT] Androrat server 1.4 download und compile |
Tutorial Ecke | wubulaien |
|
|
|
Androrat |
Abgelehnt / Rejected | khalid72 |
|
|
Besucher die dieses Thema lesen:
Mitglieder: , Gäste: , unsichtbare Mitglieder: