🤬
  • ■ ■ ■ ■ ■ ■
    BappDescription.html
     1 +<p>Usage:</p>
     2 + 
     3 +<p>The default configuration has a list of regular expression and file extension. To see the predefined list go to Options TAB. Here you can choose which of them activate or not or you can choose to insert your own regular expression or file extension. For both of them there are a list of actions to interact with them. The actions are:</p>
     4 + 
     5 +<ul>
     6 +<li><strong>Reset:</strong> the plugin will reset the default list of regular expression or file extension.</li>
     7 +<li><strong>New:</strong> a pop-up will appear and offer the opportunity to insert a new regular expression or file extension.</li>
     8 +<li><strong>Delete:</strong> after selecting a row, this will be deleted from the list.</li>
     9 +<li><strong>Clear:</strong> the plugin will clear the list leave them empty.</li>
     10 +<li><strong>Open:</strong> a pop-up will appear and offer the opportunity to insert in bulk a list of regular expression or file extension from a file.</li>
     11 +<li><strong>Save:</strong> the plugin offer the possibility to save your custom list for future tests. After you have select your own desired configuration you can start to find sensitive informations inside HTTP messages. The plugin will be execute in two different modes:</li>
     12 +</ul>
     13 + 
     14 +<ol>
     15 +<li><strong>Analyze HTTP History:</strong> the plugin will parse all http history generated from that moment and it will find any active pattern</li>
     16 +<li><strong>Live:</strong> the plugin will parse request by request as the user will generates one from his web browser.</li>
     17 +</ol>
     18 + 
  • ■ ■ ■ ■ ■ ■
    BappManifest.bmf
     1 +Uuid: 81e073a640964b2ea3af0da93d048dbd
     2 +ExtensionType: 1
     3 +Name: Sensitive Discoverer
     4 +RepoName: sensitive-discoverer
     5 +ScreenVersion: 1.1
     6 +SerialVersion: 1
     7 +MinPlatformVersion: 0
     8 +ProOnly: True
     9 +Author: Kevin Costa
     10 +ShortDescription: A Burp extension that discovers sensitive information inside HTTP messages.
     11 +EntryPoint: target/CYS4-SensitiveDiscoverer-1.0-jar-with-dependencies.jar
     12 +BuildCommand: mvn package
     13 +SupportedProducts: Pro
     14 + 
  • ■ ■ ■ ■ ■ ■
    build.gradle
     1 +apply plugin: 'java'
     2 + 
     3 +repositories {
     4 + mavenCentral()
     5 +}
     6 + 
     7 +dependencies {
     8 + compile 'net.portswigger.burp.extender:burp-extender-api:1.7.22'
     9 +}
     10 + 
     11 +sourceSets {
     12 + main {
     13 + java {
     14 + srcDir 'src'
     15 + }
     16 + resources {
     17 + srcDir 'resources'
     18 + }
     19 + }
     20 +}
     21 + 
     22 +task fatJar(type: Jar) {
     23 + 
     24 + baseName = project.name + '-all'
     25 + from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
     26 + with jar
     27 +}
     28 + 
     29 +compileJava {
     30 + targetCompatibility '1.8'
     31 + sourceCompatibility '1.8'
     32 +}
     33 + 
     34 +// targetCompatibility = 15
     35 +// sourceCompatibility = 15
     36 + 
Please wait...
Page is in error, reload to recover