Skip to content

Android Browser (With Console, Trafiic Logs, AD blocker, Tracker Blocker, Scripting, etc)

Notifications You must be signed in to change notification settings

StringManolo/Panther

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

87 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Panther         Download Panther

Panther is a privacy-focused Android browser based on WebView.

Features

  • Scrollable Settings Menu
    • Click the Panther Icon

  • Scriptable

    • Allows you to control a second brower embeeded inside Panther
    • Allows you to control the second browser using scripting languages like js, python, lua ...
    • Read the section at the end if you interested in the Status of this feature
  • Blocker


  • Console support
    • Add a console to view the console.log in Android, run commands, etc

  • InApp Logs
    • You can view all the requests the browser sends
    • You can view all the requests blocked by Panther_Blocker (request is made but the result is ignored)

  • Basic Browser Functionality

  • Small Size
    • Less than 1 MB size

  • Hardcoded User-Agent by default:
    • User-Agents typically reveal your operating system and browser version to every website you visit.
    • Even browsers like Tor Browser do not fully address this issue. When they do, they only overwrite the HTTP headers to fake it.
    • Panther overwrites the navigator.userAgent property to protect you from JavaScript fingerprinting attacks.
    • This enhances your privacy and security, protecting you from automated web exploit kits.
    • Default User-Agent: "Mozilla/5.0 (Linux; Android 14) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.122 Mobile Safari/537.36"

  • Editable User-Agent: Go to Hacking -> User-Agent -> Set your own and tap the "GO" button

  • Change Search Engine

  • Disable/Enable Javascript

  • Allows Zoom In/Out even when webpages try to disable it

  • Clears internal history upon closing the browser (use the Exit option in the scrollable menu):
    • Internal history is only saved to allow navigation between pages

  • Clears internal cache upon closing the browser:
    • Internal cache is only saved during the session for faster page loading

  • Special URLs:
    • #list - List all available urls
    • #code - Shows rendered source code
    • #cookie - Shows website cookies
    • #clearconsole - Clear the console
    • #clearlogs - Clear the logs
    • #url - Shows Current Url

Scriptable

Scriptable Status

  • Early development, only able to control it using the console and javascript calling it's api methods. Local Servers are still under early development.

Scriptable API

open
  • Description: Open a webpage in the scriptable browser
  • Syntaxis:
scriptable.open("https;//www.google.com/search?q=car", "");
click
  • Decription: Send click to a coordinate in the Scriptable browser
  • Syntaxis:
scriptable.click(160, 235); // click the Images Tab in google search