dc15315403
Added coffee rootCmd
480 lines
14 KiB
Go
480 lines
14 KiB
Go
package cmd
|
|
|
|
import (
|
|
"crowsnest/internal/pretty"
|
|
"crowsnest/internal/sqlite"
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/spf13/cobra"
|
|
"go.uber.org/zap"
|
|
"strings"
|
|
)
|
|
|
|
// Map of available tables and their columns
|
|
var availableTables = map[string][]string{
|
|
"creds": {
|
|
"id", "created_at", "updated_at", "deleted_at", "email", "username", "password",
|
|
},
|
|
//"history": {
|
|
// "id", "created_at", "updated_at", "deleted_at", "domain_name", "domain_type",
|
|
// "registrar_name", "whois_server", "created_date_iso8601", "updated_date_iso8601", "expires_date_iso8601",
|
|
//},
|
|
"lookup": {
|
|
"id", "created_at", "updated_at", "deleted_at", "search_term", "type", "first_seen", "last_visit",
|
|
"name",
|
|
},
|
|
// Query Options
|
|
"runs": {
|
|
"id", "created_at", "updated_at", "deleted_at", "max_records", "max_requests", "starting_page",
|
|
"output_format", "output_file", "regex_match", "wildcard_match", "username_query", "email_query",
|
|
"ip_query", "pass_query", "hash_query", "name_query", "domain_query", "vin_query", "license_plate_query",
|
|
"address_query", "phone_query", "social_query", "crypto_address_query", "print_balance", "creds_only",
|
|
},
|
|
"results": {
|
|
"id", "created_at", "updated_at", "deleted_at", "dehashed_id", "email", "ip_address", "username",
|
|
"password", "hashed_password", "hash_type", "name", "vin", "license_plate", "url", "social",
|
|
"cryptocurrency_address", "address", "phone", "company", "database_name",
|
|
},
|
|
"subdomains": {
|
|
"id", "created_at", "updated_at", "deleted_at", "domain", "first_seen", "last_seen",
|
|
},
|
|
"whois": {
|
|
"id", "created_at", "updated_at", "deleted_at", "audit", "contact_email", "created_date", "created_date_normalized",
|
|
"domain_name", "domain_name_ext", "estimated_domain_age", "expires_date", "expires_date_normalized", "footer", "header",
|
|
"name_servers", "parse_code", "raw_text", "registrant", "registrar_iana_id", "registrar_name", "registry_data",
|
|
"status", "stripped_text", "updated_date", "updated_date_normalized",
|
|
},
|
|
"hunter_domain": {
|
|
"id", "created_at", "updated_at", "deleted_at", "domain", "disposable", "webmail", "accept_all", "pattern",
|
|
"organization", "description", "industry", "twitter", "facebook", "linkedin", "instagram", "youtube",
|
|
"technologies", "country", "state", "city", "postal_code", "street", "headcount", "company_type", "emails", "linked_domains",
|
|
},
|
|
"hunter_email": {
|
|
"id", "created_at", "updated_at", "deleted_at", "value", "type", "confidence", "sources", "first_name", "last_name",
|
|
"position", "position_raw", "seniority", "department", "linkedin", "twitter", "phone_number", "verification_date", "verification_status",
|
|
},
|
|
}
|
|
|
|
// Function to list available tables and their columns
|
|
func listAvailableTables() {
|
|
fmt.Println("Available tables and columns:")
|
|
|
|
// Prepare data for pretty.Table
|
|
headers := []string{"Table", "Columns"}
|
|
var tableRows [][]string
|
|
|
|
// Sort tables alphabetically for consistent output
|
|
var tableNames []string
|
|
for tableName := range availableTables {
|
|
tableNames = append(tableNames, tableName)
|
|
}
|
|
|
|
// Simple bubble sort for table names
|
|
for i := 0; i < len(tableNames)-1; i++ {
|
|
for j := 0; j < len(tableNames)-i-1; j++ {
|
|
if tableNames[j] > tableNames[j+1] {
|
|
tableNames[j], tableNames[j+1] = tableNames[j+1], tableNames[j]
|
|
}
|
|
}
|
|
}
|
|
|
|
// Create rows for the table
|
|
for _, tableName := range tableNames {
|
|
columns := availableTables[tableName]
|
|
|
|
// Format columns with line breaks for better readability
|
|
var formattedColumns string
|
|
for i := 0; i < len(columns); i += 5 {
|
|
end := i + 5
|
|
if end > len(columns) {
|
|
end = len(columns)
|
|
}
|
|
if i > 0 {
|
|
formattedColumns += "\n"
|
|
}
|
|
formattedColumns += strings.Join(columns[i:end], ", ")
|
|
}
|
|
|
|
tableRows = append(tableRows, []string{tableName, formattedColumns})
|
|
}
|
|
|
|
// Display the table
|
|
pretty.Table(headers, tableRows)
|
|
}
|
|
|
|
// Function to validate table name
|
|
func isValidTable(tableName string) bool {
|
|
_, exists := availableTables[tableName]
|
|
return exists
|
|
}
|
|
|
|
// Function to validate column names for a specific table
|
|
func validateColumns(tableName string, columns []string) []string {
|
|
if tableName == "" || columns == nil || len(columns) == 0 || columns[0] == "*" {
|
|
return nil
|
|
}
|
|
|
|
tableColumns, exists := availableTables[tableName]
|
|
if !exists {
|
|
return []string{fmt.Sprintf("Table '%s' does not exist", tableName)}
|
|
}
|
|
|
|
var invalidColumns []string
|
|
for _, col := range columns {
|
|
valid := false
|
|
for _, tableCol := range tableColumns {
|
|
if col == tableCol {
|
|
valid = true
|
|
break
|
|
}
|
|
}
|
|
if !valid {
|
|
invalidColumns = append(invalidColumns, col)
|
|
}
|
|
}
|
|
|
|
return invalidColumns
|
|
}
|
|
|
|
func init() {
|
|
// Add whois command to root command
|
|
rootCmd.AddCommand(queryCmd)
|
|
|
|
// Add flags specific to whois command
|
|
queryCmd.Flags().StringVarP(&dbQueryTableName, "table", "t", "", "Table to query (results, creds, whois, subdomains, history, runs)")
|
|
queryCmd.Flags().IntVarP(&dbQueryLimitRows, "limit", "l", 100, "Limit number of results")
|
|
queryCmd.Flags().StringVarP(&dbQueryNotNull, "not-null", "n", "", "Filter for non-null values (comma-separated list, e.g., 'password,email')")
|
|
queryCmd.Flags().StringVarP(&dbQueryColumns, "columns", "c", "", "Columns to display in output (comma-separated list, e.g., 'username,email,password')")
|
|
queryCmd.Flags().StringVarP(&dbQueryUserQuery, "user-query", "q", "", "User query to execute")
|
|
queryCmd.Flags().StringVarP(&dbQueryRawQuery, "raw-query", "r", "", "Raw SQL query to execute")
|
|
queryCmd.Flags().BoolVarP(&dbQueryListAll, "list-all", "a", false, "List all tables and their columns")
|
|
|
|
// Add mutually exclusive flags to query and raw-query
|
|
// Cannot use query and raw-query at the same time
|
|
queryCmd.MarkFlagsMutuallyExclusive("user-query", "raw-query")
|
|
// Raw query does not require a table
|
|
queryCmd.MarkFlagsMutuallyExclusive("raw-query", "table")
|
|
// List all columns does not require a query or raw-query
|
|
queryCmd.MarkFlagsMutuallyExclusive("raw-query", "list-all")
|
|
}
|
|
|
|
var (
|
|
dbQueryTableName string
|
|
dbQueryLimitRows int
|
|
dbQueryNotNull string
|
|
dbQueryColumns string
|
|
dbQueryUserQuery string
|
|
dbQueryRawQuery string
|
|
dbQueryListAll bool
|
|
|
|
queryCmd = &cobra.Command{
|
|
Use: "query",
|
|
Short: "Query the database",
|
|
Long: `Query the database for various information.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
// If list-all flag is set, list all tables and columns
|
|
if dbQueryListAll {
|
|
listAvailableTables()
|
|
return
|
|
}
|
|
|
|
// If Raw Query is set, execute it and return
|
|
if dbQueryRawQuery != "" {
|
|
fmt.Println("[*] Executing Raw Query...")
|
|
rawDBQuery()
|
|
return
|
|
}
|
|
|
|
// Validate table name
|
|
if dbQueryTableName == "" {
|
|
fmt.Println("[!] Error: Table name is required. Use -t or --table to specify a table.")
|
|
fmt.Println("[*] Available tables: results, creds, whois, subdomains, history, runs")
|
|
fmt.Println("[*] Use --list-all to see all tables and their columns.")
|
|
return
|
|
}
|
|
|
|
if !isValidTable(dbQueryTableName) {
|
|
fmt.Printf("[!] Error: Unknown table '%s'.\n", dbQueryTableName)
|
|
fmt.Println("[*] Available tables: results, creds, whois, subdomains, history, runs")
|
|
fmt.Println("[*] Use --list-all to see all tables and their columns.")
|
|
return
|
|
}
|
|
|
|
// Validate columns if specified
|
|
if dbQueryColumns != "" {
|
|
columns := strings.Split(dbQueryColumns, ",")
|
|
invalidColumns := validateColumns(dbQueryTableName, columns)
|
|
if len(invalidColumns) > 0 {
|
|
fmt.Printf("[!] Error: Invalid column(s) for table '%s': %s\n",
|
|
dbQueryTableName, strings.Join(invalidColumns, ", "))
|
|
fmt.Println("[*] Available columns for this table:")
|
|
for i := 0; i < len(availableTables[dbQueryTableName]); i += 5 {
|
|
end := i + 5
|
|
if end > len(availableTables[dbQueryTableName]) {
|
|
end = len(availableTables[dbQueryTableName])
|
|
}
|
|
fmt.Printf(" %s\n", strings.Join(availableTables[dbQueryTableName][i:end], ", "))
|
|
}
|
|
return
|
|
}
|
|
}
|
|
|
|
// Validate not-null fields if specified
|
|
if dbQueryNotNull != "" {
|
|
notNullFields := strings.Split(dbQueryNotNull, ",")
|
|
invalidFields := validateColumns(dbQueryTableName, notNullFields)
|
|
if len(invalidFields) > 0 {
|
|
fmt.Printf("[!] Error: Invalid not-null field(s) for table '%s': %s\n",
|
|
dbQueryTableName, strings.Join(invalidFields, ", "))
|
|
fmt.Println("[*] Available columns for this table:")
|
|
for i := 0; i < len(availableTables[dbQueryTableName]); i += 5 {
|
|
end := i + 5
|
|
if end > len(availableTables[dbQueryTableName]) {
|
|
end = len(availableTables[dbQueryTableName])
|
|
}
|
|
fmt.Printf(" %s\n", strings.Join(availableTables[dbQueryTableName][i:end], ", "))
|
|
}
|
|
return
|
|
}
|
|
}
|
|
|
|
// Determine which table to query based on the tableTypeDBQuery parameter
|
|
table := sqlite.GetTable(dbQueryTableName)
|
|
if table == sqlite.UnknownTable {
|
|
fmt.Printf("[!] Error: Unknown table type '%s'.\n", dbQueryTableName)
|
|
fmt.Println("[*] Available tables: results, creds, whois, subdomains, history, runs")
|
|
fmt.Println("[*] Use --list-all to see all tables and their columns.")
|
|
return
|
|
}
|
|
|
|
fmt.Println("[*] Querying Database...")
|
|
tableQuery(table)
|
|
},
|
|
}
|
|
)
|
|
|
|
func tableQuery(table sqlite.Table) {
|
|
|
|
// Get the columns to query
|
|
columns := []string{"*"}
|
|
if dbQueryColumns != "" {
|
|
columns = strings.Split(dbQueryColumns, ",")
|
|
}
|
|
|
|
// Get the not null fields
|
|
notNullFields := []string{}
|
|
if dbQueryNotNull != "" {
|
|
notNullFields = strings.Split(dbQueryNotNull, ",")
|
|
}
|
|
|
|
// Get the user query
|
|
userQuery := ""
|
|
if dbQueryUserQuery != "" {
|
|
userQuery = dbQueryUserQuery
|
|
}
|
|
|
|
// Get the limit
|
|
limit := dbQueryLimitRows
|
|
|
|
// Get the object for the table
|
|
object := table.Object()
|
|
|
|
// Check if object is nil (invalid table)
|
|
if object == nil {
|
|
fmt.Printf("[!] Error: Table '%s' is not valid or does not exist.\n", dbQueryTableName)
|
|
return
|
|
}
|
|
|
|
// Query the database
|
|
db := sqlite.GetDB()
|
|
query := db.Model(object).Select(columns)
|
|
if len(notNullFields) > 0 {
|
|
for _, field := range notNullFields {
|
|
query = query.Where(fmt.Sprintf("%s IS NOT NULL", field))
|
|
}
|
|
}
|
|
if userQuery != "" {
|
|
query = query.Where(userQuery)
|
|
}
|
|
if limit > 0 {
|
|
query = query.Limit(limit)
|
|
}
|
|
rows, err := query.Rows()
|
|
if err != nil {
|
|
zap.L().Error("db_query",
|
|
zap.String("message", "failed to execute query"),
|
|
zap.Error(err),
|
|
)
|
|
fmt.Printf("[!] Error executing query: %v\n", err)
|
|
return
|
|
}
|
|
defer rows.Close()
|
|
|
|
// Get the columns
|
|
cols, err := rows.Columns()
|
|
if err != nil {
|
|
zap.L().Error("db_query",
|
|
zap.String("message", "failed to get columns from query"),
|
|
zap.Error(err),
|
|
)
|
|
fmt.Printf("[!] Error getting columns from query: %v\n", err)
|
|
return
|
|
}
|
|
|
|
// Prepare data for pretty.Table
|
|
headers := cols
|
|
var tableRows [][]string
|
|
|
|
// Process the rows
|
|
for rows.Next() {
|
|
values := make([]interface{}, len(cols))
|
|
pointers := make([]interface{}, len(cols))
|
|
for i := range values {
|
|
pointers[i] = &values[i]
|
|
}
|
|
if err := rows.Scan(pointers...); err != nil {
|
|
zap.L().Error("db_query",
|
|
zap.String("message", "failed to scan row from query"),
|
|
zap.Error(err),
|
|
)
|
|
fmt.Printf("[!] Error scanning row from query: %v\n", err)
|
|
continue
|
|
}
|
|
|
|
// Convert row values to strings
|
|
rowStrings := make([]string, len(values))
|
|
for i, value := range values {
|
|
if value == nil {
|
|
rowStrings[i] = " "
|
|
} else {
|
|
// Check if the value is a slice or array
|
|
switch v := value.(type) {
|
|
case []string:
|
|
// Join string slices with commas, no brackets
|
|
rowStrings[i] = strings.Join(v, ", ")
|
|
case []interface{}:
|
|
// Convert interface slice to strings and join
|
|
strSlice := make([]string, len(v))
|
|
for j, item := range v {
|
|
if item == nil {
|
|
strSlice[j] = ""
|
|
} else {
|
|
strSlice[j] = fmt.Sprintf("%v", item)
|
|
}
|
|
}
|
|
rowStrings[i] = strings.Join(strSlice, ", ")
|
|
case string:
|
|
// Handle JSON strings that might be arrays
|
|
if strings.HasPrefix(v, "[") && strings.HasSuffix(v, "]") {
|
|
// Try to unmarshal JSON array
|
|
var strArray []string
|
|
if err := json.Unmarshal([]byte(v), &strArray); err == nil {
|
|
rowStrings[i] = strings.Join(strArray, ", ")
|
|
} else {
|
|
rowStrings[i] = v
|
|
}
|
|
} else {
|
|
rowStrings[i] = v
|
|
}
|
|
default:
|
|
rowStrings[i] = fmt.Sprintf("%v", v)
|
|
}
|
|
}
|
|
}
|
|
tableRows = append(tableRows, rowStrings)
|
|
}
|
|
|
|
// Display the table
|
|
pretty.Table(headers, tableRows)
|
|
}
|
|
|
|
func rawDBQuery() {
|
|
db := sqlite.GetDB()
|
|
rows, err := db.Raw(dbQueryRawQuery).Rows()
|
|
if err != nil {
|
|
zap.L().Error("raw_query",
|
|
zap.String("message", "failed to execute raw query"),
|
|
zap.Error(err),
|
|
)
|
|
fmt.Printf("[!] Error executing raw query: %v\n", err)
|
|
return
|
|
}
|
|
defer rows.Close()
|
|
|
|
columns, err := rows.Columns()
|
|
if err != nil {
|
|
zap.L().Error("raw_query",
|
|
zap.String("message", "failed to get columns from raw query"),
|
|
zap.Error(err),
|
|
)
|
|
fmt.Printf("[!] Error getting columns from raw query: %v\n", err)
|
|
return
|
|
}
|
|
|
|
// Prepare data for pretty.Table
|
|
headers := columns
|
|
var tableRows [][]string
|
|
|
|
// Process the rows
|
|
for rows.Next() {
|
|
values := make([]interface{}, len(columns))
|
|
pointers := make([]interface{}, len(columns))
|
|
for i := range values {
|
|
pointers[i] = &values[i]
|
|
}
|
|
if err := rows.Scan(pointers...); err != nil {
|
|
zap.L().Error("raw_query",
|
|
zap.String("message", "failed to scan row from raw query"),
|
|
zap.Error(err),
|
|
)
|
|
fmt.Printf("[!] Error scanning row from raw query: %v\n", err)
|
|
continue
|
|
}
|
|
|
|
// Convert row values to strings
|
|
rowStrings := make([]string, len(values))
|
|
for i, value := range values {
|
|
if value == nil {
|
|
rowStrings[i] = " "
|
|
} else {
|
|
// Check if the value is a slice or array
|
|
switch v := value.(type) {
|
|
case []string:
|
|
// Join string slices with commas, no brackets
|
|
rowStrings[i] = strings.Join(v, ", ")
|
|
case []interface{}:
|
|
// Convert interface slice to strings and join
|
|
strSlice := make([]string, len(v))
|
|
for j, item := range v {
|
|
if item == nil {
|
|
strSlice[j] = ""
|
|
} else {
|
|
strSlice[j] = fmt.Sprintf("%v", item)
|
|
}
|
|
}
|
|
rowStrings[i] = strings.Join(strSlice, ", ")
|
|
case string:
|
|
// Handle JSON strings that might be arrays
|
|
if strings.HasPrefix(v, "[") && strings.HasSuffix(v, "]") {
|
|
// Try to unmarshal JSON array
|
|
var strArray []string
|
|
if err := json.Unmarshal([]byte(v), &strArray); err == nil {
|
|
rowStrings[i] = strings.Join(strArray, ", ")
|
|
} else {
|
|
rowStrings[i] = v
|
|
}
|
|
} else {
|
|
rowStrings[i] = v
|
|
}
|
|
default:
|
|
rowStrings[i] = fmt.Sprintf("%v", v)
|
|
}
|
|
}
|
|
}
|
|
tableRows = append(tableRows, rowStrings)
|
|
}
|
|
|
|
// Display the table
|
|
pretty.Table(headers, tableRows)
|
|
}
|