https://github.com/ThomasThelen/BrowserLib
A library which makes modification of browsers' behavior easy.
https://github.com/ThomasThelen/BrowserLib
browser-modification cpp registry web-browser web-hacking windows-registry
Last synced: 3 months ago
JSON representation
A library which makes modification of browsers' behavior easy.
- Host: GitHub
- URL: https://github.com/ThomasThelen/BrowserLib
- Owner: ThomasThelen
- Archived: true
- Created: 2015-05-31T01:03:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-03-09T06:09:36.000Z (almost 4 years ago)
- Last Synced: 2024-08-03T22:18:13.321Z (7 months ago)
- Topics: browser-modification, cpp, registry, web-browser, web-hacking, windows-registry
- Language: C++
- Homepage:
- Size: 17.6 KB
- Stars: 10
- Watchers: 4
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - ThomasThelen/BrowserLib - A library which makes modification of browsers' behavior easy. (C++)
README
# BrowserLib
An old C++ library which makes modification of Internet Explorer quick and easy. No guarantees if any of this still works.## Motivation
Many of a web bowers' properties are stored in the registry. It's common for malware to change these values to route victims to custom home pages, search engines, etc...This library provides access to many of these registry items, allowing you to change and check the values programmatically.
## Features
1. Ability to obtain
a. Current Version
b. Current Home Page
c. Current Path of Instillation
d. Current Search Engine
e. Check whether the phishing filter is enabled
2. Ability to seta. Home Page
b. Path of Instillation
c. Search Engine
d. Phishing Filter
3. Google Chrome Planned
a. Home Page
b. Search Engine
## Instructions
Include browserlib.h in your c++ file.
The IExplorer class is the main Internet Explorer interface.
The SEARCHENGINE structure is passed to the SetSearchEngine function and must be filled beforehand. In it are all the parameters needed to create a new search engine registry entry.
## Examples
### InternetExplorer.cpp
This is an example on how to monitor certain Internet Explorer parameters. This can be extended to run in the background to protect against unknown modifications.
### InternetExplorer2.cpp
This shows example usage of the IExplorer class and its methdos.