Skip to content

Commit

Permalink
Changed links to HTTPS, changed version to 2.0.2
Browse files Browse the repository at this point in the history
Warxim committed Jul 7, 2022
1 parent a0dce5e commit ffe6cfe
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# ![PETEP - PEnetration TEsting Proxy](http://petep.warxim.com/img/logo.png)
# ![PETEP - PEnetration TEsting Proxy](https://petep.warxim.com/img/logo.png)
**PETEP** (**PEnetration TEsting Proxy**) is open-source Java application for network communication proxying for the purpose of penetration testing. It allows penetration testers to setup proxies and interceptors to manage the traffic transmitted between client and server.

Currently PETEP supports primarily TCP (with SSL/TLS support).

You can find out more about PETEP on the following website: http://petep.warxim.com/
You can find out more about PETEP on the following website: https://petep.warxim.com/

## Requirements
You need **Java 11** or newer version to run PETEP.

## Using PETEP with tools for HTTP
PETEP allows you to use your favorite tools for web penetration testing (like Burp Suite, OWASP Zap etc.) for non-HTTP traffic.

See http://petep.warxim.com/user-guide/external-http-proxy/.
See https://petep.warxim.com/user-guide/external-http-proxy/.

## Extensibility
It is possible to develop extensions using Java to implement support for new protocols and/or to implement new functionality.

For more information about extension development, please see http://petep.warxim.com/dev-guide/.
For more information about extension development, please see https://petep.warxim.com/dev-guide/.

## License
PETEP is licensed under GNU GPL 3.0.
4 changes: 2 additions & 2 deletions src/main/java/com/warxim/petep/common/Constant.java
Original file line number Diff line number Diff line change
@@ -30,10 +30,10 @@
@PetepAPI
public final class Constant {
// PETEP version
public static final String VERSION = "2.0.1";
public static final String VERSION = "2.0.2";

// PETEP web
public static final String WEB = "http://petep.warxim.com/";
public static final String WEB = "https://petep.warxim.com/";

// Charset
public static final Charset DEFAULT_CHARSET = StandardCharsets.ISO_8859_1;
4 changes: 2 additions & 2 deletions src/main/resources/html/guide/internal/IntroductionGuide.html
Original file line number Diff line number Diff line change
@@ -8,11 +8,11 @@ <h2>About PETEP</h2>
</p>
<p>
<strong>PETEP website</strong>:
<a href="http://petep.warxim.com/" onclick="petep.openLink('http://petep.warxim.com/');return false;">PETEP</a>
<a href="https://petep.warxim.com/" onclick="petep.openLink('https://petep.warxim.com/');return false;">PETEP</a>
</p>
<p>
<strong>Author's website</strong>:
<a href="http://warxim.com/" onclick="petep.openLink('http://warxim.com/');return false;">Michal Válka (Warxim)</a>
<a href="https://warxim.com/" onclick="petep.openLink('https://warxim.com/');return false;">Michal Válka (Warxim)</a>
</p>
<p>Be aware that this is a simplified guide. For more information, please go to the PETEP website, where you can find both user and development guides.</p>

0 comments on commit ffe6cfe

Please sign in to comment.