Showing posts with label ANDROID FREE INTERNET. Show all posts
Showing posts with label ANDROID FREE INTERNET. Show all posts

How To Add Twitter Timeline Widgets On Blog

Twitter is more conscious about twitter widgets and tweet buttons for websites and blogs.As part of this  twitter developed more features on their widgets.Earlier times,there had only Tweets widgets which displays your tweets. Today morning,twitter introduced new widgets for favorite tweets,List tweets and Hash tag search.
And you can publish any users timeline tweets (public) on your websites.

How To Add this Widget on your Blog ?

  • Go to Widgets settings on your twitter account. (https://twitter.com/settings/widgets) .
  • Click on 'Create new" button on right side  of the particular page.
  • Choose your  Timeline source, and scroll down your page and click on 'Create Widget' button.
  • Copy down the Code and Paste in HTML/Java script Box in your Blog.
  • Now Go to Blogger.com --> Layout --> Click on 'Add a Gadget'  --> and Choose HTML/Javascript widget from the list.
  • Paste this code and Save. Refresh your blog and see your tweets on your blog.

How To Deface A Website With Basic HTML Coding In Just 5 Minute

I was browsing the net when i saw this tutorial:

Source: http://naijadudes.com


Steps:

Open the site you want to hack. Provide wrong username/password combination in its log in form. (e.g. : Username : me and Password: ' or 1=1 --)An error will occur saying wrong username-password. Now be prepared your experiment starts from here.


Right click anywhere on that error page =>> go to view source.

3. There you can see the HTML coding with JavaScript.• There you find somewhat like this....<_form action="...Login....">• Before this login information copy the URL of the site in which you are. (e.g. :"< _form..........action=http://www.targetwebsite.com/login.......>")

4. Then delete the JavaScript from the above that validates your information in the server.(Do this very carefully, your success to hack the site depends upon this i.e. how efficiently you delete the java scripts that validate your account information)

5.Then take a close look for "<_input name="password" type="password">"[without quotes] -> replace "<_type=text> “there instead of "<_type=password>". See there if maximum length of password is less than 11 then increase it to 11 (e.g. : if then write )

6. Just go to file => save as and save it anywhere in your hard disk with ext.html(e.g.: c:\chan.html)

7. Reopen your target web page by double clicking 'chan.html' file that you saved in your hard disk earlier.• You see that some changes in current page as compared to original One. Don't worry.

8. Provide any username [e.g.: hacker] and password [e.g.:' or 1=1 --] You have successfully cracked the above website and entered into the account of List user saved in the server's database.

Warnings

Do the coding and changes very carefully, your success to hack the site depends upon this i.e. how efficiently you delete the java scripts that validate your account information.

Please like this post if it worked for you

Developing native Apps for Jailbreaked Windows Phone

Windows Phone loaded with Windows OS like Windows Phone 7, Windows Phone 7.5, Windows Phone 7.8, Windows Phone 8 and lately if news sources are to be believed then even Windows Phone 8.1 is also on cards.

One thing for which Microsoft should be appreciated is the security & stability of the OS of Mobile Phone, When compared with Android it is much much secure OS and is on par with Apple iOS in terms of Security.
But adding security had imposed lot of restrictions and thus you wont find much applications as compared to Android & iPhone on Windows Store.

You will never find applications like Task Manger where you have flexibility to see which applications are running on phone, what amount of memory are they using which you can easily do it in even the cheapest of android phones. So here is the idea by which developers can develop applications which would have not been possible with Microsoft's restriction.

So as to develop a native application thus utilizing the core features which are currently available to OEMs, you need to jailbreak your windows phone.

Now what is Jail-breaking? Just visit here to find out what exactly Jailbreaking is and how to Jailbreak your Windows Phone. Once you have your phone jailbreaked, follow the below procedure to develop native application and enrich you applications with native functionality.

      1.    Download the DLL Import Project from the below link
     http://forum.xda-developers.com/showthread.php?t=1006331

    2.    The DLL Import Project contains compiled DLLs, with which you can access to those API which are not provided or accessible in non-jailbreak windows Phone 7

The following steps were followed while creating a new application taking reference of DLL Import project for CPU and Memory Analysis Tool:


       - Follow the normal procedure of creating a new Windows Phone 8/7.1 project on Visual Studio 2012.

       - When the project has been made, go to the Solution Explorer bar and right click on the project name.


       - Since the DLLs contains Native Code, Visual Studio will not allow you to add the DLL via Add references, so instead we have a workaround as follow


       -  Go to Add > Existing Item.


     - Doing this, navigate to the folder containing the respective DLLs you need to add for the project.


      - In that folder, select the respective DLLs and click open. The DLLs will be added.


     - For the Memory CPU Tool, the DLLs added were

                           DllImportMango.dll
                           Microsoft.Phone.InteropServices.dll
                           Microsoft.Live.dll
                           Microsoft.Phone.Controls.Toolkit.dll
                           Microsoft.Live.Controls.dll
                           AmCharts.Windows.QuickCharts.WP.dll.

     - After adding all the DLLs the main step is to set their properties.


    - Right click on each DLL name and go to Properties.


   - In properties the Build Action should be set to Content and Copy to Output Directory should be set to Copy Always.


    - This step should be done for all the DLLs.


    - Now go to the Solution Explorer and expand Properties.


    - Right click on WMAppManifest.xml and go to Properties.


   - Here also the Build Action should be set to Content and Copy to Output Directory should be set to Copy Always.


   - Now open the project in the file explorer and go to the folder named Properties.


   - In this folder edit the WMAppManifest.xml in the notepad. It should contain the following capabilities:

ID_CAP_GAMERSERVICES
ID_CAP_IDENTITY_DEVICE
ID_CAP_IDENTITY_USER
ID_CAP_LOCATION
ID_CAP_MEDIALIB
ID_CAP_MICROPHONE
ID_CAP_NETWORKING
ID_CAP_PHONEDIALER
ID_CAP_PUSH_NOTIFICATION
ID_CAP_SENSORS
ID_CAP_WEBBROWSERCOMPONENT
ID_CAP_NETWORKING_ADMIN
ID_CAP_INTEROPSERVICES
ID_CAP_RINGTONE_ADD
      - Now go to the solution explorer and right click on References and click on Add Reference.

      - Check mark the respective references required for the project.

      - In this project, the references used were:

Microsoft.Devices.Sensors
Microsoft.Phone
Microsoft.Phone.Interop
Microsoft.Xna.Framework
Microsoft.Xna.Framework.Game
mscorlib
mscorlib.Extensions
System
System.Core
System.Net
System.Windows
System.Xml
System.Xml.Linq


Above mentioned are all the points which should be kept in mind while creating a new application based on DLL Imports in Windows Phone 8/7.1
This is the procedure to use already available DLLs and access those APIS which DLL Import project has exposed.
In case you want to use/add/modify the APIs and create your new DLL. It is possible by following procedure.
1.      Install the following software
a.      Visual Studio 2008 SP1
b.      Windows Mobile SDK 6 PRO
2.      Now open the Solution which is there inside VS2008 folder of CSharp DLL Import Project which you have downloaded earlier.
3.      Once you open the solution you can easily modify/add the APIs which are available in Windows Mobile 6, compile the solution and get the respective DLL.
4.      Now you can use the newly made DLL by Add Existing Item and following the above procedure in you windows phone 7 projects which will run properly on Jailbreak Windows Phone 7.

Hack ISP for free Internet using Wireshark

1 Go to Start. In the search box, type in "cmd". If your Start menu has the Run command, click Run and type "cmd" in the field.

2 Type"ipconfig" using the cursor.

3 Hit Enter. On your screen, you will see a series of names and numbers. Look for the line that says Default Gateway. Write down the number that you see next to Default Gateway

4 Navigate to Google or another search engine. In the address bar, type in the number that you just wrote down.

5 Hit Enter. You will see another screen that has fields to enter your username and password. The username is "admin", and the password is either "admin" or "1234". Enter that information into the appropriate fields. Click the "Log In" button.

6 Go to the Wireless tab on the website that pops up. If you scroll down, you should find something called password. Write down your password and put it in a safe place in case you forget it again.

opera mini free Internet FOR ANDROID

Settings >wireless & networks >Mobile networks e jan..

jodi apni 2oi ta sim use kore thaken tahole "

 Mobile networks " SIM1 hoy tahole "subscription 1" select korun.
R jodi gp sim ta " SIM2" hoy tahole "subscription2 "select korun.Dhorun apnar gp sim ta SIM1 e ase ,Tahole  subscription 1  select kore

" Access Point Names" e probes korun.
"MENU" button e click kore  new APN  e click korun. ebar configur koren
  name: GP-INTEWRNET
APN: gpinternet
Proxy: 82.145.210.16
port: 80
  MCC: 470
  MNC:01

AI CONFIGUR TA Defult hisabe set korun. niche theke akta handlar Download kore nin.
" OperaMini Or UC Browser" ait ainstall korar porbe jodi onno kono opera /uc install thake tahole seta unstall kore din.
OperaMini Or UC Browser  "open korle akta handlar menu dekhte paben akhan theke 
"""proxy type এ HTTP or HOST or REAL HOST select korun.....proxy Server box e type korun  "" wap.gamezilla.com.bd abar "save" korun.apni jodi sobkisu thik thak moto dan tahole operamini install hobe...
 R supur speed er jonno gp er jekono akti packege niea nin,,,,
UC Browser er jonno  FrontQuery bebohar korte hobe ,download er jonno
Use java cgi link here. wap.gamezilla.com.bd/ nph- proxy.cgi/OA/ http/ Don't use http or host for UCBrowser ,Only FrontQuery