Showing posts with label How To. Show all posts
Showing posts with label How To. Show all posts

Slide app hack trick | Modded apk+ unlimited mobile balance points

Slide app Hack trick to earn more balance.I will show you now how to hack slide app and get unlimited balance by hacking slide app data
As you know slide app pays you every time you unlock your mobile.
The description of Slide - Earn Free Recharge!No.1 App for lock screen, Free Recharge and more rewards. Get paid to read!For how many hours is the internet working on your mobile app? Does it reward you?May be not!!!Slide App ensures you earn and that too with content of your interest. Slide App helps you earn whether while sitting idle or travelling, just slide on the content pieces. Read, learn and earn realmoney.Get productive and use every bit of your time reading content that’s fun, informative and what's better, it lets you earn that extra buck! So all you got to do is SLIDE to unlock!Here are a few rules of thumb to slide:- Swipe Right to Unlock, ah! You don’t want to do that now, that’s usual!- Swipe Left to read up the content that pops up on your screen and soon you land onto this page that tells you more on your topic of interest!- Swipe Up to view options of content and continue earning!We all do love choices! Now don’t we ;)Content Buckets:You can choose categories of your interest and view content in accordance with that, we have a broad list of 13 different categories, well that’s the stuff that pops up on your locked screen! So choose asper your interest.
Moreover, our direct referral program, for every friend you refer you will earn.We are partnering with a number of leading brands in the F&B, Travel, Hospitality, Education and technology space to advertise and with content curators at a local level to publish content on SlideApp platform to offer rich and useful content hereby giving you ample opportunity to use the content and earn at the same time.When you unlock your phone, you are rewarded with points in your Slide App wallet which can be redeemed for mobile phone recharges and a lot more. So now you won’t have to pay for your recharge again. SLIDE is there to pay your mobile bills.
SLIDE and HOW?
1. Install the Slide App!
2. Select the categories of your interest
3. And that’s it! You can now start earning credits immediately by inviting your friends.
4. Once your phone is locked, SLIDE comesalive by showcasing content that you want to see!Could you ask for more? ;)And last but not the least,
1. Activity - You can trace your recharge activity and can keep a track of expenditure
2. Control your Lock screen - Using this feature, you can switch off the lock screen contentfor a stipulated time period during your meditation hours and switch it back on again when you are ready to earn!
There are two methods on how to hack slide app data:
1.By downloading modded apk
2.By hacking app data
Method one of two:
By downloading slide app hack apk
Steps to hack slide app trick:
1.Go to Mobile settings
2.Click on App Manager or apps
3.Find slide app
4.Click on Force stop and then click on Clear Data,clear cache
5.Click on uninstall
6.Download the modded apk file from here
    
>>>>>>>  Download Now
     
  Slide app hack modded trick          
7.After downloading this,install it and open it .
8.Enter your Mobile number in which you want to get Mobile balance
9.You had done,you will see unlimited money
10.Get that balance in sim and enjoy!
11.When you will unlock your mobile you will get balance
  See Screenshot Prove below
        

HOW TO BECOME A HACKER STEP BY STEP

***ETHICAL HACKING***




LEARN UNIX / LINUX OPERATING SYSTEM

is an open source operating system which provides better security to computer systems. It was first developed by AT&T in Bell labs and contributed a lot in the world of security. You should install LINUX freely available open source versions on your desktops. 









LEARN CODING

Learn how to write a code. Learning how to write a code helps you to create a tools you'll be needed in hacking. Pick at least 2 programming language including C, because Linux is created in C language.






LEARN NETWORKING

google_ad_client = "ca-pub-5845938804428703"; google_ad_slot = "9809446273"; google_ad_width = 468; google_ad_height = 15;
t-size: 13px; text-align: justify;">

Learning networking will lead you to the victim, like for example: Where the attacks going through; Where is the target; What ports are open; LAN or WAN. etc.
Don't forget, if you pass this step it will lead you JAIL unless you're doing a Pen testing. Learn how to spoof your MAC address and IP's ;)




LEARN CRYPTOGRAPHY



Learn Cryptography because now a days, there are no messages, files, websites and etc are not encrypted in the internet so learn how to crack it. Just for example: you have a girlfriend and she's connected to your network (WIFI) you want to know if she is cheating on you, Sniff your network and dump all the traffic and crack it, you'll see if she is cheating on you :) 





VULNERABILITY


Learn how to find, create, and use the vulnerability of the target.









EXPLOIT!

Prevent Blogger from Redirecting your Blogspot Blog to Country-Specific URLs

Blogger now redirects blogspot blogs to country-specific domains in most countries. You can use a simple JavaScript snippet to prevent your blog redirection.
Google now redirects Blogger blogs to country-specific domains. For instance, if you open example.blogspot.com in your web browser, you will be redirected to example.blogspot.in if you are located in India or to example.blogspot.co.uk if you are accessing the blog from UK.

Google does country-specific redirection for selective censorship – that means they can easily censor or block a blog post, or other entire blog site, in one country but still serve that page in other geographic regions. Blog redirection only occurs if you are on a blogspot domain and not if your Blogger blog is on a custom domain.

My traffic logs suggest that country-specific redirection in Blogger is live in at least 15 countries. They are India [blogspot.in], Australia [blogspot.com.au], UK [blogspot.co.uk], Japan [blogspot.jp], New Zealand [blogspot.co.nz], Canada [blogspot.ca], Germany [blogspot.de], Italy [blogspot.it], France [blogspot.fr], Sweden [blogspot.se], Spain [blogspot.com.es], Portugal [blogspot.pt], Brazil [blogspot.com.br], Argentina [blogspot.com.ar], Mexico [blogspot.mx]

Prevent Blogger from Redirecting to Country-Specific Domains

This country based URL redirection is likely to impact your Blogger blogs in a not so positive manner. For example:
  1. The social stats – like your Facebook Likes, Google +1s and Tweet counts – for your blog posts may be reduced as the URLs for the same blog post will be different for different visitors.
  2. You will have a similar problem if you are using an external commenting platform like Disqus or Facebook Comments because the blog URLs will be different even when the underlying page is the same.
  3. Also, if canonicalization isn’t implemented properly, it may cost you some Google juice as external websites may link to your country-specific pages.
  4. Some users have reported a dip in Google AdSense earnings when pages are served through country-specific domains.
If you are not happy with the idea of Blogger redirecting your blog to a different URL, you can add the following piece of code to your Blogger template and it will always serve the .com address to your visitors irrespective of their geographic location.
Go to your blog inside the Blogger Dashboard and choose Template. Then click the “Edit HTML” button followed by “Proceed.” Next, copy-paste the following code into the template after the <head> tag.

  1. <script type="text/javascript">

  2.  

  3. // Written by ITHUBSPK


  4. /* Get the full URL of the current blogger page */

  5. var blog = document.location.href.toLowerCase();

  6.  

  7. /* Do not redirect if the domain is .com already */

  8. if (!blog.match(/\.blogspot\.com/)) {



  9.  

  10. /* Replace the country TLD with .com and ncr switch */

  11. blog = blog.replace(/\.blogspot\..*?\//, ".blogspot.com/ncr/");

  12.  

  13. /* Redirect to the new .com URL in the current tab */

  14. window.location.replace(blog);

  15. }

  16.  

  17. // Source: https://ithubspk.blogspot.com


  18. </script>


Click the Save Template button and now your Blogger Blog will always serve with the blogspot.com URL.
The JavaScript snippet gets the URL of the current Blogger page and if it isn’t served from the .com domain, the code replaces the country specific TLD (like blogspot.co.au or blogspot.pk) with the blogspot.com URL. It also adds the /ncr switch to force-redirect the visitor to the blogspot.com address.

Top 5 Google Chrome Extension for Better Youtube Experience

Top 5 Google Chrome Extension for Better Youtube Experience

Top 5 Google Chrome Extension for Youtube
Google Chrome is a fast, secure, and free web browser built for the modern web. Chrome syncs bookmarks across all your devices, fills out forms automatically, and so much more.
Of course, every web browser has its advantage and disadvantage, but Google Chrome is the best choice when you’d prefer having a highly productive, multipurpose and extension-rich web browser! Nevertheless, just as you should be careful when selecting a web browser, you’ve to make sure that you get the best Chrome extensions as well.
Here is a Top 5 list of Google Chrome Extension that will make your experience on Youtube become better.
Adblock Plus, is one of the most popular Google Chrome extensions, lets you clean your web pages, by removing those clumsy advertisements from sidebars and everywhere else. The free plugin can block various kinds of ads, such as animated ads, pop-ups & pop-unders, Facebook ads, etc. Also, there is an impressive level of protection from tracking and malware. It is to be noted that Adblock Plus does not put an end to web advertisements; on the other hand, there’s a set of acceptable ads that do not interrupt your web browsing. Plus, this open-source extension is customizable as well.
Features
  • Block ads
  • Allow acceptable ads
  • Disable trackking
  • Disable Malware domain
  • Disable social media buttons
  • Typo protection

Youtube Plus is a Google Chrome extension which has lots of features and customization. It allows you to have a pop-up video mode, and it also gives you the experience as in Youtube for mobile which automatically minimizes video player when you scroll down the page. Feel free to download and explore its features.
Features
  • Play your videos in a pop-out window
  • Turn off 60fps
  • Navigate through videos frame by frame (No longer necessary, YouTube already has it)
  • Allow ads only in videos from your subscribed channels
  • Blacklist entire channels from your suggestions and search results
  • Make the player fill the entire browser with the Fullbrowser mode feature
  • Player always visible where you want while reading the comments
  • Play your most recent subscriptions in a playlist
  • and more!


Sometimes, there’re certain people that love to download videos just to save them and watch later. If you are that kind of person. This might be the right extension for you. Video Downloader is an awesome Google Chrome extension which allows you to download any video from Youtube into various format and resolution.
Features
  • Directly download video from youtube without leaving the page
  • Have various resolution selection
  • Have various video format

Youtube is also known as heaven of music. This extension might be an angel in that heaven. Because this extension gives you the option to download you favorite music tracks from Youtube without leaving the page, unlike other extensions.
Features
  • Download audio directly from Youtube page

MusixMatch is a well-known lyrics application, it’s extension is very useful when it come to streaming music videos on Youtube when you want to sing along. MusixMatch will fetch the lyrics from its database and show it on the Youtube player as “closed caption”
Features
  • Instant lyrics view
  • Support multiple language all over the world

ESC OR MOUSE2 BUTTON ARE NOT WORKING IN DESERT STORM2


If you facing the problem of esc/mouse2 button are not working in desert storm 2 Game.
 With this error You can’t play the game .Lets solve it

 

 

 

 

HOW TO FIX ESC/MOUSE2 ERROR 

1= Open Notepad  

 2=Copy the Below Code & Past

  FIRE,0=KEY_KP_0 FIRE,1=JOY_BUTTON_7 FIRE,2=MOUSE_BUTTON_0 ACTION,0=KEY_R ACTION,1=JOY_BUTTON_2 NEXT_GRUNT,0=KEY_PAGEUP NEXT_GRUNT,1=JOY_BUTTON_12 PREV_GRUNT,0=KEY_PAGEDOWN PREV_GRUNT,1=JOY_BUTTON_14 GO,0=KEY_G GO,1=JOY_BUTTON_3 STANCE,0=KEY_SPACE STANCE,1=JOY_BUTTON_1 PAUSE,0=KEY_ESC PAUSE,1=JOY_BUTTON_11 OBJECTIVES,0=KEY_F1 OBJECTIVES,1=JOY_BUTTON_8 STRAFE_LEFT,0=KEY_A STRAFE_LEFT,1=JOY_AXIS_3 STRAFE_RIGHT,0=KEY_D STRAFE_RIGHT,1=JOY_AXIS_4 TURN_LEFT,0=JOY_AXIS_9 TURN_LEFT,1=KEY_COMMA TURN_RIGHT,0=JOY_AXIS_10 TURN_RIGHT,1=KEY_FULLSTOP FORWARD,0=KEY_W FORWARD,1=JOY_AXIS_0 BACKWARD,0=KEY_S BACKWARD,1=JOY_AXIS_1 AIM_PITCH_AXIS,0=JOY_AXIS_8 TARGET_LEFT,0=KEY_SEMICOLON TARGET_LEFT,1=JOY_BUTTON_4 TARGET_RIGHT,0=KEY_QUOTE TARGET_RIGHT,1=JOY_BUTTON_5 TARGET_NEXT,0=KEY_LALT WALK,0=KEY_LCTRL HEAD_TOGGLE,0=JOY_BUTTON_10 HEAD_TOGGLE,1=MOUSE_BUTTON_1 HEAD_YAW_AXIS,0=JOY_AXIS_11 HEAD_PITCH_AXIS,0=JOY_AXIS_8 HEAD_ZOOM_IN,0=KEY_KP_PLUS HEAD_ZOOM_OUT,0=KEY_KP_MINUS HEAD_ZOON_NEXT,0=JOY_BUTTON_9 ORDER,0=KEY_LALT ORDER,1=JOY_BUTTON_6 ORDER_UP,0=KEY_W ORDER_UP,1=JOY_BUTTON_12 ORDER_DOWN,0=KEY_S ORDER_DOWN,1=JOY_BUTTON_14 ORDER_FOLLOW,0=KEY_F ORDER_FOLLOW,1=JOY_BUTTON_2 ORDER_HOLD,0=KEY_H ORDER_HOLD,1=JOY_BUTTON_0 ORDER_ADVANCE,0=KEY_A ORDER_ADVANCE,1=JOY_BUTTON_1 ORDER_ALL_FOLLOW_TOGGLE,0=KEY_D ORDER_ALL_FOLLOW_TOGGLE,1=JOY_BUTTON_5 ORDER_ALL_PRONE,0=KEY_C ORDER_ALL_PRONE,1=JOY_BUTTON_7 ORDER_FIRE_AT_WILL_TOGGLE,0=KEY_G ORDER_FIRE_AT_WILL_TOGGLE,1=JOY_BUTTON_3 ORDER_ADVANCE_YAW_AXIS,0=JOY_AXIS_11 ORDER_ADVANCE_PITCH_AXIS,0=JOY_AXIS_8 ORDER_ADVANCE_DIRVEC_X_AXIS,0=JOY_AXIS_5 ORDER_ADVANCE_DIRVEC_Y_AXIS,0=JOY_AXIS_2 ORDER_ADVANCE_ROTATE_LEFT,0=KEY_Q ORDER_ADVANCE_ROTATE_RIGHT,0=KEY_E INVENTORY,0=KEY_LSHIFT INVENTORY,1=JOY_BUTTON_0 INVENTORY_UP,0=KEY_W INVENTORY_UP,1=JOY_BUTTON_12 INVENTORY_DOWN,0=KEY_S INVENTORY_DOWN,1=JOY_BUTTON_14 INVENTORY_USE,0=JOY_BUTTON_7 INVENTORY_USE,1=MOUSE_BUTTON_0 INVENTORY_MODE_LEFT,0=KEY_A INVENTORY_MODE_RIGHT,0=KEY_D INVENTORY_DROP,0=KEY_J INVENTORY_DROP,1=JOY_BUTTON_3 GIVE_TAKE_WEAPON_AMMO,0=KEY_FULLSTOP GIVE_TAKE_WEAPON_AMMO,1=JOY_BUTTON_7 GIVE_TAKE_AMMO,0=KEY_COMMA GIVE_TAKE_AMMO,1=JOY_BUTTON_5 MOVIE_CANCEL,0=KEY_ESC MOVIE_CANCEL,1=JOY_BUTTON_0 MOVIE_CANCEL,2=MOUSE_BUTTON_0 OBJECTIVE_NEXT,0=KEY_N OBJECTIVE_NEXT,1=JOY_BUTTON_13 OBJECTIVE_PREV,0=KEY_P OBJECTIVE_PREV,1=JOY_BUTTON_15 OBJECTIVE_SCROLL_UP,0=KEY_UPARROW OBJECTIVE_SCROLL_UP,1=JOY_AXIS_6 OBJECTIVE_SCROLL_DOWN,0=KEY_DOWNARROW OBJECTIVE_SCROLL_DOWN,1=JOY_AXIS_7 OBJECTIVE_SCROLL_LEFT,0=KEY_LEFTARROW OBJECTIVE_SCROLL_LEFT,1=JOY_AXIS_9 OBJECTIVE_SCROLL_RIGHT,0=KEY_RIGHTARROW OBJECTIVE_SCROLL_RIGHT,1=JOY_AXIS_10 MENU_UP,0=KEY_UPARROW MENU_UP,1=JOY_BUTTON_12 MENU_UP,2=JOY_AXIS_0 MENU_DOWN,0=KEY_DOWNARROW MENU_DOWN,1=JOY_BUTTON_14 MENU_DOWN,2=JOY_AXIS_1 MENU_LEFT,0=KEY_LEFTARROW MENU_LEFT,1=JOY_BUTTON_15 MENU_LEFT,2=JOY_AXIS_3 MENU_RIGHT,0=KEY_RIGHTARROW MENU_RIGHT,1=JOY_BUTTON_13 MENU_RIGHT,2=JOY_AXIS_4 MENU_BACK,0=KEY_ESC MENU_BACK,1=JOY_BUTTON_0 MENU_BACK,2=MOUSE_BUTTON_1 MENU_FORWARD,0=KEY_RETURN MENU_FORWARD,1=JOY_BUTTON_2 GRUNT_1,0=KEY_1 GRUNT_2,0=KEY_2 GRUNT_3,0=KEY_3 GRUNT_4,0=KEY_4 GRUNT_FOLLOW_HALT_1,0=KEY_1 GRUNT_FOLLOW_HALT_2,0=KEY_2 GRUNT_FOLLOW_HALT_3,0=KEY_3 GRUNT_FOLLOW_HALT_4,0=KEY_4 TOGGLE_CHASE_TARGET,0=KEY_SPACE SHOW_SCORES,0=KEY_TAB SEND_GLOBAL_MSG,0=KEY_T SEND_TEAM_MSG,0=KEY_Y

3= Now Save as It with Name default.reg   

4= Now Paste this default.reg into Game Folder and enjoy………