language stringlengths 0 24 | filename stringlengths 9 214 | code stringlengths 99 9.93M |
|---|---|---|
Go | bettercap/session/session_json.go | package session
import (
"encoding/json"
"net"
"runtime"
"time"
"github.com/bettercap/bettercap/caplets"
"github.com/bettercap/bettercap/core"
"github.com/bettercap/bettercap/network"
"github.com/bettercap/bettercap/packets"
)
var flagNames = []string{
"UP",
"BROADCAST",
"LOOPBACK",
"POINT2POINT",
"MULT... |
Go | bettercap/session/session_parse.go | package session
import (
"fmt"
"strings"
"github.com/evilsocket/islazy/str"
)
func ParseCommands(line string) []string {
args := []string{}
buf := ""
singleQuoted := false
doubleQuoted := false
finish := false
line = strings.Replace(line, `""`, `"<empty>"`, -1)
line = strings.Replace(line, `''`, `"<empty... |
Go | bettercap/session/session_routing.go | package session
import (
"github.com/bettercap/bettercap/network"
"github.com/bettercap/bettercap/routing"
"github.com/evilsocket/islazy/log"
"time"
)
type gateway struct {
IP string `json:"ip"`
MAC string `json:"mac"`
}
type GatewayChange struct {
Type string `json:"type"`
Prev gateway `json:"prev"`
New ... |
Go | bettercap/session/session_setup.go | package session
import (
"fmt"
"os"
"os/signal"
"strings"
"syscall"
"time"
"github.com/bettercap/bettercap/caplets"
"github.com/bettercap/readline"
"github.com/evilsocket/islazy/fs"
"github.com/evilsocket/islazy/log"
)
func containsCapitals(s string) bool {
for _, ch := range s {
if ch < 133 && ch > 1... |
Go | bettercap/session/session_setup_test.go | package session
import "testing"
func Test_containsCapitals(t *testing.T) {
type args struct {
s string
}
tests := []struct {
name string
args args
want bool
}{
{
name: "Test all alpha lowercase",
args: args{s: "abcdefghijklmnopqrstuvwxyz"},
want: false,
},
{
name: "Test all alpha upperc... |
Go | bettercap/session/session_test.go | package session
import (
"fmt"
"testing"
)
func TestParseCommands(t *testing.T) {
//commands := ParseCommands("wifi.recon on; asdf; \"asdf;\" asdf")
t.Run("handles a semicolon as a delimiter", func(t *testing.T) {
first := "wifi.recon on"
second := "wifi.ap"
cmd := fmt.Sprintf("%s; %s", first, second)
com... |
Go | bettercap/tls/cert.go | package tls
import (
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"crypto/x509/pkix"
"encoding/pem"
"math/big"
"os"
"strconv"
"time"
"github.com/bettercap/bettercap/session"
)
type CertConfig struct {
Bits int
Country string
Locality string
Organization string
Orga... |
Go | bettercap/tls/sign.go | package tls
import (
"crypto/rand"
"crypto/rsa"
"crypto/tls"
"crypto/x509"
"crypto/x509/pkix"
"fmt"
"math/big"
"net"
"time"
"github.com/bettercap/bettercap/log"
)
func getServerCertificate(host string, port int) *x509.Certificate {
log.Debug("Fetching TLS certificate from %s:%d ...", host, port)
config ... |
HTML | BurpBounty/BappDescription.html | <p>This BurpSuite extension allows you, in a quick and simple way, to improve
the active and passive BurpSuite scanner by means of personalized rules
through a very intuitive graphical interface. Through an advanced search of
patterns and an improvement of the payload to send, we can create our own
issue profiles both ... |
BurpBounty/BappManifest.bmf | Uuid: 618f0b2489564607825e93eeed8b9e0a
ExtensionType: 1
Name: Burp Bounty, Scan Check Builder
RepoName: scan-check-builder
ScreenVersion: 4.0
SerialVersion: 21
MinPlatformVersion: 0
ProOnly: True
Author: Eduardo Garcia
ShortDescription: Extend the Burp active and passive scanner by creating custom scan checks with an i... | |
BurpBounty/build.gradle | apply plugin: 'java'
repositories {
mavenCentral()
}
dependencies {
compile 'net.portswigger.burp.extender:burp-extender-api:1.7.13'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.5'
}
targetCompatibility = '1.8'
sourceCompatibility = '1.8'
sourceSets {
main {
java {
... | |
Markdown | BurpBounty/CHANGELOG.md | ## Changelog
**4.0.0 20210902**
* Burp Bounty Pro 1.6 core
* Quick issue alert
* More options for create profiles
**3.6.0 20201005**
* Fixed bug with Match And Replace
* Fixed bug with content-type detection
* Fixed regex bug that contains commas
**3.5.0 20201001**
* Fixed bug with Payload and Payload without encode... |
Markdown | BurpBounty/Changelog_3.0.4beta.md | # Improvements Burp Bounty 3.0.4beta:
### "Path discovery" feature add new insertion points
New insertion points are added to the requests (To discover hidden files and directories), when you check the "Path Discovery" option in "Payload Options" section. For example in the request:
GET /dir1/dir2/file.php?param=val... |
Markdown | BurpBounty/Changelog_3.0.5beta.md | # Improvements Burp Bounty 3.0.5beta:
### Choose insertion points type for one profile
For better optimization, now you can choose the insertion point type for one profile. For example, for discover new application paths, you only will choose the "Path discover" insertion point type, avoiding other innecesaries reques... |
BurpBounty/LICENCE | Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defin... | |
Markdown | BurpBounty/README.md | [](https://github.com/wagiro/BurpBounty/releases)
[](https://github.com/wagiro/BurpBounty/issues)
[IBurpCollaboratorClientContext.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*... |
Java | BurpBounty/main/java/burp/IBurpCollaboratorInteraction.java | package burp;
/*
* @(#)IBurpCollaboratorInteraction.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
... |
Java | BurpBounty/main/java/burp/IBurpExtender.java | package burp;
/*
* @(#)IBurpExtender.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* All exte... |
Java | BurpBounty/main/java/burp/IBurpExtenderCallbacks.java | package burp;
/*
* @(#)IBurpExtenderCallbacks.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import... |
Java | BurpBounty/main/java/burp/IContextMenuFactory.java | package burp;
/*
* @(#)IContextMenuFactory.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import j... |
Java | BurpBounty/main/java/burp/IContextMenuInvocation.java | package burp;
/*
* @(#)IContextMenuInvocation.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import... |
Java | BurpBounty/main/java/burp/ICookie.java | package burp;
/*
* @(#)ICookie.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java.util.Date... |
Java | BurpBounty/main/java/burp/IExtensionHelpers.java | package burp;
/*
* @(#)IExtensionHelpers.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java... |
Java | BurpBounty/main/java/burp/IExtensionStateListener.java | package burp;
/*
* @(#)IExtensionStateListener.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
... |
Java | BurpBounty/main/java/burp/IHttpListener.java | package burp;
/*
* @(#)IHttpListener.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* Extensio... |
Java | BurpBounty/main/java/burp/IHttpRequestResponse.java | package burp;
/*
* @(#)IHttpRequestResponse.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* T... |
Java | BurpBounty/main/java/burp/IHttpRequestResponsePersisted.java | package burp;
/*
* @(#)IHttpRequestResponsePersisted.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/... |
Java | BurpBounty/main/java/burp/IHttpRequestResponseWithMarkers.java | package burp;
/*
* @(#)IHttpRequestResponseWithMarkers.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
... |
Java | BurpBounty/main/java/burp/IHttpService.java | package burp;
/*
* @(#)IHttpService.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* This inte... |
Java | BurpBounty/main/java/burp/IInterceptedProxyMessage.java | package burp;
/*
* @(#)IInterceptedProxyMessage.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
impo... |
Java | BurpBounty/main/java/burp/IIntruderAttack.java | package burp;
/*
* @(#)IIntruderAttack.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* This i... |
Java | BurpBounty/main/java/burp/IIntruderPayloadGenerator.java | package burp;
/*
* @(#)IIntruderPayloadGenerator.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**... |
Java | BurpBounty/main/java/burp/IIntruderPayloadGeneratorFactory.java | package burp;
/*
* @(#)IIntruderPayloadGeneratorFactory.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
... |
Java | BurpBounty/main/java/burp/IIntruderPayloadProcessor.java | package burp;
/*
* @(#)IIntruderPayloadProcessor.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**... |
Java | BurpBounty/main/java/burp/IMenuItemHandler.java | package burp;
/*
* @(#)IMenuItemHandler.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* Exten... |
Java | BurpBounty/main/java/burp/IMessageEditor.java | package burp;
/*
* @(#)IMessageEditor.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java.aw... |
Java | BurpBounty/main/java/burp/IMessageEditorController.java | package burp;
/*
* @(#)IMessageEditorController.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
... |
Java | BurpBounty/main/java/burp/IMessageEditorTab.java | package burp;
/*
* @(#)IMessageEditorTab.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java... |
Java | BurpBounty/main/java/burp/IMessageEditorTabFactory.java | package burp;
/*
* @(#)IMessageEditorTabFactory.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
... |
Java | BurpBounty/main/java/burp/IParameter.java | package burp;
/*
* @(#)IParameter.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* This interf... |
Java | BurpBounty/main/java/burp/IProxyListener.java | package burp;
/*
* @(#)IProxyListener.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* Extensi... |
Java | BurpBounty/main/java/burp/IRequestInfo.java | package burp;
/*
* @(#)IRequestInfo.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java.net.... |
Java | BurpBounty/main/java/burp/IResponseInfo.java | package burp;
/*
* @(#)IResponseInfo.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java.uti... |
Java | BurpBounty/main/java/burp/IResponseKeywords.java | package burp;
/*
* @(#)IResponseKeywords.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java... |
Java | BurpBounty/main/java/burp/IResponseVariations.java | package burp;
/*
* @(#)IResponseVariations.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import ja... |
Java | BurpBounty/main/java/burp/IScanIssue.java | package burp;
/*
* @(#)IScanIssue.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* This interf... |
Java | BurpBounty/main/java/burp/IScannerCheck.java | package burp;
/*
* @(#)IScannerCheck.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java.uti... |
Java | BurpBounty/main/java/burp/IScannerInsertionPoint.java | package burp;
/*
* @(#)IScannerInsertionPoint.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
*... |
Java | BurpBounty/main/java/burp/IScannerInsertionPointProvider.java | package burp;
/*
* @(#)IScannerInsertionPointProvider.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*... |
Java | BurpBounty/main/java/burp/IScannerListener.java | package burp;
/*
* @(#)IScannerListener.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* Exten... |
Java | BurpBounty/main/java/burp/IScanQueueItem.java | package burp;
/*
* @(#)IScanQueueItem.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* This in... |
Java | BurpBounty/main/java/burp/IScopeChangeListener.java | package burp;
/*
* @(#)IScopeChangeListener.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* E... |
Java | BurpBounty/main/java/burp/ISessionHandlingAction.java | package burp;
/*
* @(#)ISessionHandlingAction.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
*... |
Java | BurpBounty/main/java/burp/ITab.java | package burp;
/*
* @(#)ITab.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java.awt.Componen... |
Java | BurpBounty/main/java/burp/ITempFile.java | package burp;
/*
* @(#)ITempFile.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
/**
* This interfa... |
Java | BurpBounty/main/java/burp/ITextEditor.java | package burp;
/*
* @(#)ITextEditor.java
*
* Copyright PortSwigger Ltd. All rights reserved.
*
* This code may be used to extend the functionality of Burp Suite Community Edition
* and Burp Suite Professional, provided that this usage does not violate the
* license terms for those products.
*/
import java.awt.C... |
BurpBounty/main/java/burpbountyfree/ActiveProfile.form | <?xml version="1.0" encoding="UTF-8" ?>
<Form version="1.8" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
<NonVisualComponents>
<Component class="javax.swing.ButtonGroup" name="buttonGroup1">
<AuxValues>
<AuxValue name="JavaCodeGenerator_VariableModifier" type="java.lan... | |
Java | BurpBounty/main/java/burpbountyfree/ActiveProfile.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/ActiveScanner.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/BuildUnencodeRequest.java | package burpbountyfree;
import burp.IExtensionHelpers;
import burp.IRequestInfo;
import burp.IScannerInsertionPoint;
import java.util.ArrayList;
import java.util.List;
public class BuildUnencodeRequest {
private IExtensionHelpers helpers;
BuildUnencodeRequest(IExtensionHelpers helpers) {
this.helper... |
Java | BurpBounty/main/java/burpbountyfree/BurpBountyExtension.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
BurpBounty/main/java/burpbountyfree/BurpBountyGui.form | <?xml version="1.0" encoding="UTF-8" ?>
<Form version="1.8" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
<NonVisualComponents>
<Component class="javax.swing.ButtonGroup" name="buttonGroup1">
</Component>
<Component class="javax.swing.ButtonGroup" name="buttonGroup2">
</C... | |
Java | BurpBounty/main/java/burpbountyfree/BurpBountyGui.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/BurpCollaboratorThread.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/CollaboratorData.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/CustomScanIssue.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/GrepMatch.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/Headers.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
BurpBounty/main/java/burpbountyfree/NewTag.form | <?xml version="1.0" encoding="UTF-8" ?>
<Form version="1.5" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
<Properties>
<Property name="alignmentX" type="float" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
<Connection code="300" type="code"/>
</Property>
... | |
Java | BurpBounty/main/java/burpbountyfree/NewTag.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/PassiveRequestScanner.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/PassiveResponseScanner.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/ProfilesManager.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/ProfilesProperties.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
BurpBounty/main/java/burpbountyfree/RequestProfile.form | <?xml version="1.0" encoding="UTF-8" ?>
<Form version="1.8" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
<NonVisualComponents>
<Component class="javax.swing.ButtonGroup" name="buttonGroup1">
<AuxValues>
<AuxValue name="JavaCodeGenerator_VariableModifier" type="java.lan... | |
Java | BurpBounty/main/java/burpbountyfree/RequestProfile.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
BurpBounty/main/java/burpbountyfree/ResponseProfile.form | <?xml version="1.0" encoding="UTF-8" ?>
<Form version="1.8" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JPanelFormInfo">
<NonVisualComponents>
<Component class="javax.swing.ButtonGroup" name="buttonGroup1">
<AuxValues>
<AuxValue name="JavaCodeGenerator_VariableModifier" type="java.lan... | |
Java | BurpBounty/main/java/burpbountyfree/ResponseProfile.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
Java | BurpBounty/main/java/burpbountyfree/Utils.java | /*
Copyright 2018 Eduardo Garcia Melia <wagiro@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed... |
BitBake | BurpBounty/profiles/AccessToken.bb | [
{
"ProfileName": "AccessToken",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@egarme",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,access_token"
],
"Tags": [
"All"
],
"PayloadResponse": false... |
BitBake | BurpBounty/profiles/AmazonAWS.bb | [
{
"ProfileName": "AmazonAWS",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@egarme",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,s3..*amazonaws.com"
],
"Tags": [
"All"
],
"PayloadResponse": f... |
BitBake | BurpBounty/profiles/AmazonAWSRequest.bb | [
{
"ProfileName": "AmazonAWSRequest",
"Name": "",
"Enabled": true,
"Scanner": 3,
"Author": "@egarme",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,All Request,Name,s3..*amazonaws.com"
],
"Tags": [
"All"
],
... |
BitBake | BurpBounty/profiles/Amazon_AWS_S3_Url.bb | [
{
"ProfileName": "Amazon_AWS_S3_Url",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,[a-zA-Z0-9-\\.\\_]+\\.s3\\.amazonaws\\.com",
"true,Or,s3:\\/\\/[a-zA... |
BitBake | BurpBounty/profiles/Amazon_MWS_Auth_Token.bb | [
{
"ProfileName": "Amazon_MWS_Auth_Token",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,amzn\\\\.mws\\\\.[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a... |
BitBake | BurpBounty/profiles/Android_WebView_JS.bb | [
{
"ProfileName": "Android_WebView_JS",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,setJavaScriptEnabled\\(true\\)"
],
"Tags": [
"All",
"... |
BitBake | BurpBounty/profiles/ApiKeyRequest.bb | [
{
"ProfileName": "ApiKeyRequest",
"Name": "",
"Enabled": true,
"Scanner": 3,
"Author": "@egarme",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,All Request,Value,api_key",
"true,Or,All Request,Value,api-key",
"tr... |
BitBake | BurpBounty/profiles/ApiKeyResponse.bb | [
{
"ProfileName": "ApiKeyResponse",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@egarme",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,api_key",
"true,Or,api-key",
"true,Or,api key",
"true,Or,apik... |
BitBake | BurpBounty/profiles/ApiPath.bb | [
{
"ProfileName": "ApiPath",
"Name": "",
"Enabled": true,
"Scanner": 3,
"Author": "@egarme",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,All Request,Value,/api/",
"true,Or,All Request,Value,/internal_api"
],
"... |
BitBake | BurpBounty/profiles/API_Keys.bb | [
{
"ProfileName": "API_Keys",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,(?:\\s|\u003d|:|\"|^)AKC[a-zA-Z0-9]{10,}",
"true,Or,^(AAAA[A-Za-z0-9_-]{7}:[A... |
BitBake | BurpBounty/profiles/Artifactory_API_Token.bb | [
{
"ProfileName": "Artifactory_API_Token",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,(?:\\s|\u003d|:|\"|^)AKC[a-zA-Z0-9]{10,}"
],
"Tags": [
"... |
BitBake | BurpBounty/profiles/Artifactory_Password.bb | [
{
"ProfileName": "Artifactory_Password",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,(?:\\s|\u003d|:|\"|^)AP[\\dABCDEF][a-zA-Z0-9]{8,}"
],
"Tags": [... |
BitBake | BurpBounty/profiles/AuthorizationBearerToken.bb | [
{
"ProfileName": "AuthorizationBearerToken",
"Name": "",
"Enabled": true,
"Scanner": 3,
"Author": "@egarme",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,All Request,Value,Authorization: Bearer"
],
"Tags": [
"... |
BitBake | BurpBounty/profiles/Authorization_Bearer.bb | [
{
"ProfileName": "Authorization_Bearer",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,bearer\\s*[a-zA-Z0-9_\\-\\.\u003d:_\\+\\/]+"
],
"Tags": [
... |
BitBake | BurpBounty/profiles/AWS_Access_Key_ID.bb | [
{
"ProfileName": "AWS_Access_Key_ID",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,[^a-zA-Z0-9](AKIA[a-zA-Z0-9]{16})",
"true,Or,(AccessKeyId|aws_access... |
BitBake | BurpBounty/profiles/AWS_Client_Secret.bb | [
{
"ProfileName": "AWS_Client_Secret",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,(SecretAccessKey|aws_secret_access_key)"
],
"Tags": [
"All",... |
BitBake | BurpBounty/profiles/AWS_Creds_File.bb | [
{
"ProfileName": "AWS_Creds_File",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,(?i)(aws_access_key_id|aws_secret_access_key)(.{0,20})?\u003d.[0-9a-zA-Z\\/+]... |
BitBake | BurpBounty/profiles/AWS_EC2_Url.bb | [
{
"ProfileName": "AWS_EC2_Url",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,ec2-[0-9-]+.cd-[a-z0-9-]+.compute.amazonaws.com"
],
"Tags": [
"All... |
BitBake | BurpBounty/profiles/AWS_Region.bb | [
{
"ProfileName": "AWS_Region",
"Name": "",
"Enabled": true,
"Scanner": 2,
"Author": "@six2dez1",
"Payloads": [],
"Encoder": [],
"UrlEncode": false,
"CharsToUrlEncode": "",
"Grep": [
"true,,(us(-gov)?|ap|ca|cn|eu|sa)-(central|(north|south)?(east|west)?)-\\d"
],
"... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.