This is the multi-page printable view of this section. Click here to print.
Tengo Scripting
6 - Filepath
Module - “filepath”
filepath := import("filepath")
Functions
join
join(elem ...string) => string
Joins any number of path elements into a single path.
Example
fmt := import("fmt")
filepath := import("filepath")
// On Unix
fmt.println(filepath.join("a", "b", "c"))
fmt.println(filepath.join("a", "b/c"))
fmt.println(filepath.join("a/b", "c"))
fmt.println(filepath.join("a/b", "/c"))
fmt.println(filepath.join("a/b", "../../../xyz"))
Output:
a/b/c
a/b/c
a/b/c
a/b/c
../xyz
file_exists
file_exists(path string) => bool
Returns whether a file exists at the specified path.
Example
fmt := import("fmt")
filepath := import("filepath")
fmt.println(filepath.file_exists("/etc/passwd"))
fmt.println(filepath.file_exists("/etc/not-a-file"))
fmt.println(filepath.file_exists("/etc"))
Output:
true
false
false
dir_exists
dir_exists(path string) => bool
Returns whether a directory exists at the specified path.
Example
fmt := import("fmt")
filepath := import("filepath")
fmt.println(filepath.dir_exists("/etc/passwd"))
fmt.println(filepath.dir_exists("/etc/not-a-file"))
fmt.println(filepath.dir_exists("/etc"))
Output:
false
false
true
base
base(path string) => string
Returns the last element of the path.
dir
dir(path string) => string
Returns all but the last element of path, typically the path’s directory.
abs
abs(path string) => string/error
Returns an absolute representation of path.
ext
ext(path string) => string
Returns the file name extension used by path.
glob
glob(pattern string) []string/error
glob(pattern string, exclude_re string) []string/error
Returns the names of all files matching the shell pattern or nil if there is no matching file. Optionally can specify a regex string of the files to exclude.
from_slash
from_slash(path string) string
Returns the result of replacing each slash (’/’) character in path with a separator character.
13 - Scripting
Scripting
With arsenic’s custom tengo functions and modules, custom tengo scripts to aid in pentesting operations.
Quick Start
TODO: Add content
16 - Stdlib
Standard Library
- filepath: platform-independent OS filename/path functionality. Implements functions in the
path/filepath
go module. - git: specialized git operations.
- slice: slice related functions.
- url: url parsing/manipulating functionality.
- arsenic: arsenic specific functionality.
- script: get info, run, find, and stop scripts.
- exec: run OS commands.
- os2: additional platform-independent OS functionality not implemented in the tengo
os
module. - set: create/use a simple implementation of the set data structure.
- cobra: add arguments, commands, and flags to scripts. Wrapper around the Cobra go library.
- nmap: run nmap scans programmatically with parsed results. Wrapper around the nmap go library.
- ffuf: run ffuf content discovery scans programmatically. Wrapper around the ffufwrap go library.
- viper: configuration related functionality. Wrapper around the viper go library with some arsenic related functionality added in.
- scope: retrieve current scope and filter out of scope hosts.
- log: logging functionality.