mirror of
https://github.com/bettercap/bettercap
synced 2025-07-07 13:32:07 -07:00
new: session scripts can now include other scripts via require('file')
This commit is contained in:
parent
2b1ff7d59f
commit
8827a2af84
6 changed files with 94 additions and 20 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,7 +1,7 @@
|
||||||
*.sw*
|
*.sw*
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
*.prof*
|
*.prof*
|
||||||
betterbot.js
|
_example/config.js
|
||||||
pcaps
|
pcaps
|
||||||
build
|
build
|
||||||
bettercap
|
bettercap
|
||||||
|
|
3
_example/config.example.js
Normal file
3
_example/config.example.js
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
var wifiInterface = 'put the wifi interface to put in monitor mode here';
|
||||||
|
var telegramToken = 'put your telegram bot token here';
|
||||||
|
var telegramChatId = 'put your telegram chat id here';
|
|
@ -1,17 +1,5 @@
|
||||||
var wifiInterface = 'put the wifi interface to put in monitor mode here';
|
require("config.js")
|
||||||
var telegramToken = 'put your telegram bot token here';
|
require("telegram.js")
|
||||||
var telegramChatId = 'put your telegram chat id here';
|
|
||||||
|
|
||||||
function sendMessage(message) {
|
|
||||||
var url = 'https://api.telegram.org/bot' + telegramToken +
|
|
||||||
'/sendMessage?chat_id=' + telegramChatId +
|
|
||||||
'&text=' + http.Encode(message);
|
|
||||||
|
|
||||||
var resp = http.Get(url, {});
|
|
||||||
if( resp.Error ) {
|
|
||||||
log("error while running sending telegram message: " + resp.Error.Error());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function onDeauthentication(event) {
|
function onDeauthentication(event) {
|
||||||
var data = event.Data;
|
var data = event.Data;
|
10
_example/telegram.js
Normal file
10
_example/telegram.js
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
function sendMessage(message) {
|
||||||
|
var url = 'https://api.telegram.org/bot' + telegramToken +
|
||||||
|
'/sendMessage?chat_id=' + telegramChatId +
|
||||||
|
'&text=' + http.Encode(message);
|
||||||
|
|
||||||
|
var resp = http.Get(url, {});
|
||||||
|
if( resp.Error ) {
|
||||||
|
log("error while running sending telegram message: " + resp.Error.Error());
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,20 +1,93 @@
|
||||||
package session
|
package session
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/bettercap/bettercap/caplets"
|
||||||
_ "github.com/bettercap/bettercap/js"
|
_ "github.com/bettercap/bettercap/js"
|
||||||
|
"github.com/evilsocket/islazy/fs"
|
||||||
"github.com/evilsocket/islazy/plugin"
|
"github.com/evilsocket/islazy/plugin"
|
||||||
|
"github.com/evilsocket/islazy/str"
|
||||||
|
"io/ioutil"
|
||||||
|
"path/filepath"
|
||||||
|
"regexp"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// require("telegram.js")
|
||||||
|
var requireParser = regexp.MustCompile(`(?msi)^\s*require\s*\(\s*["']([^"']+)["']\s*\);?\s*$`)
|
||||||
|
|
||||||
type Script struct {
|
type Script struct {
|
||||||
*plugin.Plugin
|
*plugin.Plugin
|
||||||
}
|
}
|
||||||
|
|
||||||
func LoadScript(fileName string, ses *Session) (*Script, error) {
|
// yo! we're doing c-like preprocessing on a javascript file from go :D
|
||||||
if p, err := plugin.Load(fileName); err != nil {
|
func preprocess(basePath string, code string, level int) (string, error) {
|
||||||
|
if level >= 255 {
|
||||||
|
return "", fmt.Errorf("too many nested includes")
|
||||||
|
}
|
||||||
|
|
||||||
|
matches := requireParser.FindAllStringSubmatch(code, -1)
|
||||||
|
for _, match := range matches {
|
||||||
|
expr := match[0]
|
||||||
|
fileName := str.Trim(match[1])
|
||||||
|
|
||||||
|
if fileName[0] != '/' {
|
||||||
|
searchPaths := []string{
|
||||||
|
filepath.Join(basePath, fileName),
|
||||||
|
filepath.Join(caplets.InstallBase, fileName),
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.Contains(fileName, ".js") == false {
|
||||||
|
searchPaths = append(searchPaths, []string{
|
||||||
|
filepath.Join(basePath, fileName) + ".js",
|
||||||
|
filepath.Join(caplets.InstallBase, fileName) + ".js",
|
||||||
|
}...)
|
||||||
|
}
|
||||||
|
|
||||||
|
found := false
|
||||||
|
for _, fName := range searchPaths {
|
||||||
|
if fs.Exists(fName) {
|
||||||
|
fileName = fName
|
||||||
|
found = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if !found {
|
||||||
|
return "", fmt.Errorf("file %s not found in any of %#v", fileName, searchPaths)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
raw, err := ioutil.ReadFile(fileName)
|
||||||
|
if err != nil {
|
||||||
|
return "", fmt.Errorf("%s: %v", fileName, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if includedBody, err := preprocess(filepath.Dir(fileName), string(raw), level+1); err != nil {
|
||||||
|
return "", fmt.Errorf("%s: %v", fileName, err)
|
||||||
|
} else {
|
||||||
|
code = strings.ReplaceAll(code, expr, includedBody)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return code, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func LoadScript(fileName string) (*Script, error) {
|
||||||
|
raw, err := ioutil.ReadFile(fileName)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
basePath := filepath.Dir(fileName)
|
||||||
|
if code, err := preprocess(basePath, string(raw), 0); err != nil {
|
||||||
|
return nil, err
|
||||||
|
} else if p, err := plugin.Parse(code); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
} else {
|
} else {
|
||||||
|
p.Path = fileName
|
||||||
|
p.Name = strings.Replace(basePath, ".js", "", -1)
|
||||||
return &Script{
|
return &Script{
|
||||||
Plugin: p,
|
Plugin: p,
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -311,7 +311,7 @@ func (s *Session) Start() error {
|
||||||
|
|
||||||
// load the script here so the session and its internal objects are ready
|
// load the script here so the session and its internal objects are ready
|
||||||
if *s.Options.Script != "" {
|
if *s.Options.Script != "" {
|
||||||
if s.script, err = LoadScript(*s.Options.Script, s); err != nil {
|
if s.script, err = LoadScript(*s.Options.Script); err != nil {
|
||||||
return fmt.Errorf("error loading %s: %v", *s.Options.Script, err)
|
return fmt.Errorf("error loading %s: %v", *s.Options.Script, err)
|
||||||
}
|
}
|
||||||
log.Debug("session script %s loaded", *s.Options.Script)
|
log.Debug("session script %s loaded", *s.Options.Script)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue