-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add golang checksec intial commit
- add golang checksec initial commit - add readme notes around switch to golang Signed-off-by: Brian Davis <[email protected]>
- Loading branch information
Showing
35 changed files
with
1,763 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
project_name: checksec | ||
|
||
builds: | ||
- id: linux | ||
binary: checksec | ||
main: ./main.go | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
goarch: | ||
#- amd64 | ||
- arm64 | ||
|
||
- id: darwin | ||
binary: checksec | ||
main: ./main.go | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- darwin | ||
goarch: | ||
#- amd64 | ||
- arm64 | ||
|
||
# - id: windows | ||
# binary: checksec | ||
# main: ./main.go | ||
# goos: | ||
# - windows | ||
# goarch: | ||
# - amd64 | ||
# - arm64 | ||
# ldflags: | ||
# - -buildmode=exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
FROM photon:3.0 | ||
FROM ubuntu:22.04 | ||
|
||
COPY checksec /bin/ | ||
RUN tdnf clean all && tdnf remove -y toybox && tdnf upgrade -y && \ | ||
tdnf install -y coreutils util-linux sed tar texinfo procps-ng grep findutils gzip file which awk binutils && \ | ||
chmod +x /bin/checksec | ||
|
||
RUN apt-get update && apt-get -y -q upgrade && DEBIAN_FRONTEND=noninteractive apt-get -y -q install \ | ||
bc bison flex build-essential ccache git file \ | ||
libncurses-dev libssl-dev u-boot-tools wget \ | ||
xz-utils vim xfce4 libxml2-utils python3 python3-pip jq \ | ||
gcc clang && apt-get clean \ | ||
pip3 install --upgrade pip && pip3 install setuptools && \ | ||
pip3 install demjson3 && mkdir -p /zig && \ | ||
wget https://ziglang.org/builds/zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz && \ | ||
tar xf zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz -C /zig --strip-components=1 && \ | ||
rm -rf zig-linux-$(uname -m)-0.12.0-dev.3667+77abd3a96.tar.xz && \ | ||
chmod +x /bin/checksec | ||
|
||
COPY . /root | ||
WORKDIR /root | ||
|
||
COPY dist/linux_linux_arm64/checksec /bin/checksec-go | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
Copyright © 2023 NAME HERE <EMAIL ADDRESS> | ||
*/ | ||
package cmd | ||
|
||
import ( | ||
"checksec/pkg/utils" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
// dirCmd represents the dir command | ||
var dirCmd = &cobra.Command{ | ||
Use: "dir", | ||
Short: "check all files in a directory", | ||
Args: cobra.ExactArgs(1), | ||
Run: func(cmd *cobra.Command, args []string) { | ||
dir := args[0] | ||
recursive, _ := cmd.Flags().GetBool("recursive") | ||
utils.CheckDirExists(dir) | ||
var Elements []interface{} | ||
var ElementColors []interface{} | ||
for _, file := range utils.GetAllFilesFromDir(dir, recursive) { | ||
data, color := utils.RunChecks(file) | ||
Elements = append(Elements, data...) | ||
ElementColors = append(ElementColors, color...) | ||
} | ||
utils.FilePrinter(outputFormat, Elements, ElementColors) | ||
|
||
}, | ||
} | ||
|
||
func init() { | ||
rootCmd.AddCommand(dirCmd) | ||
dirCmd.Flags().BoolP("recursive", "r", false, "Enable recursive through the directories") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package cmd | ||
|
||
import ( | ||
"checksec/pkg/utils" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
// fileCmd represents the file command | ||
var fileCmd = &cobra.Command{ | ||
Use: "file", | ||
Short: "Check a single binary file", | ||
Args: cobra.ExactArgs(1), | ||
Run: func(cmd *cobra.Command, args []string) { | ||
file := args[0] | ||
|
||
utils.CheckElfExists(file) | ||
data, color := utils.RunChecks(file) | ||
utils.FilePrinter(outputFormat, data, color) | ||
}, | ||
} | ||
|
||
func init() { | ||
rootCmd.AddCommand(fileCmd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
Copyright © 2023 NAME HERE <EMAIL ADDRESS> | ||
*/ | ||
package cmd | ||
|
||
import ( | ||
"checksec/pkg/checksec" | ||
"checksec/pkg/utils" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
// fortifyFileCmd represents the fortifyFile command | ||
var fortifyFileCmd = &cobra.Command{ | ||
Use: "fortifyFile", | ||
Short: "Check Fortify for binary file", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
file := args[0] | ||
|
||
utils.CheckElfExists(file) | ||
binary := utils.GetBinary(file) | ||
fortify := checksec.Fortify(file, binary) | ||
output := []interface{}{ | ||
map[string]interface{}{ | ||
"name": file, | ||
"checks": map[string]interface{}{ | ||
"fortify_source": fortify.Output, | ||
"fortified": fortify.Fortified, | ||
"fortifyable": fortify.Fortifiable, | ||
"noFortify": fortify.NoFortify, | ||
"libcSupport": fortify.LibcSupport, | ||
"numLibcFunc": fortify.NumLibcFunc, | ||
"numFileFunc": fortify.NumFileFunc, | ||
}, | ||
}, | ||
} | ||
color := []interface{}{ | ||
map[string]interface{}{ | ||
"name": file, | ||
"checks": map[string]interface{}{ | ||
"fortified": fortify.Fortified, | ||
"fortifiedColor": "unset", | ||
"noFortify": fortify.NoFortify, | ||
"fortifyable": fortify.Fortifiable, | ||
"fortifyableColor": "unset", | ||
"fortify_source": fortify.Output, | ||
"fortify_sourceColor": fortify.Color, | ||
"libcSupport": fortify.LibcSupport, | ||
"libcSupportColor": fortify.LibcSupportColor, | ||
"numLibcFunc": fortify.NumLibcFunc, | ||
"numFileFunc": fortify.NumFileFunc, | ||
}, | ||
}, | ||
} | ||
utils.FortifyPrinter(outputFormat, output, color) | ||
}, | ||
} | ||
|
||
func init() { | ||
rootCmd.AddCommand(fortifyFileCmd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
Copyright © 2023 NAME HERE <EMAIL ADDRESS> | ||
*/ | ||
package cmd | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
// fortifyProcCmd represents the fortifyProc command | ||
var fortifyProcCmd = &cobra.Command{ | ||
Use: "fortifyProc", | ||
Short: "Check Fortify for running process", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
fmt.Println("fortifyProc called") | ||
}, | ||
} | ||
|
||
func init() { | ||
rootCmd.AddCommand(fortifyProcCmd) | ||
|
||
// Here you will define your flags and configuration settings. | ||
|
||
// Cobra supports Persistent Flags which will work for this command | ||
// and all subcommands, e.g.: | ||
// fortifyProcCmd.PersistentFlags().String("foo", "", "A help for foo") | ||
|
||
// Cobra supports local flags which will only run when this command | ||
// is called directly, e.g.: | ||
// fortifyProcCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
Copyright © 2023 NAME HERE <EMAIL ADDRESS> | ||
*/ | ||
package cmd | ||
|
||
import ( | ||
"checksec/pkg/utils" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
// kernelCmd represents the kernel command | ||
var kernelCmd = &cobra.Command{ | ||
Use: "kernel", | ||
Short: "Check kernel security flags", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
var configFile string | ||
if len(args) > 0 { | ||
configFile = args[0] | ||
} else { | ||
configFile = "/proc/config.gz" | ||
} | ||
|
||
utils.CheckFileExists(configFile) | ||
|
||
kernel, kernelColors := utils.ParseKernel(configFile) | ||
utils.KernelPrinter(outputFormat, kernel, kernelColors) | ||
}, | ||
} | ||
|
||
func init() { | ||
rootCmd.AddCommand(kernelCmd) | ||
|
||
// Here you will define your flags and configuration settings. | ||
|
||
// Cobra supports Persistent Flags which will work for this command | ||
// and all subcommands, e.g.: | ||
// kernelCmd.PersistentFlags().String("foo", "", "A help for foo") | ||
|
||
// Cobra supports local flags which will only run when this command | ||
// is called directly, e.g.: | ||
// kernelCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
Copyright © 2023 NAME HERE <EMAIL ADDRESS> | ||
*/ | ||
package cmd | ||
|
||
import ( | ||
"checksec/pkg/utils" | ||
"fmt" | ||
"os" | ||
|
||
"path/filepath" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
// procCmd represents the proc command | ||
var procCmd = &cobra.Command{ | ||
Use: "proc", | ||
Short: "Check a file of a running process", | ||
Args: cobra.ExactArgs(1), | ||
Run: func(cmd *cobra.Command, args []string) { | ||
proc := args[0] | ||
|
||
file, err := os.Readlink(filepath.Join("/proc", proc, "exe")) | ||
if err != nil { | ||
fmt.Printf("Error: Pid %s not found", proc) | ||
os.Exit(1) | ||
} | ||
|
||
utils.CheckElfExists(file) | ||
data, color := utils.RunChecks(file) | ||
utils.FilePrinter(outputFormat, data, color) | ||
}, | ||
} | ||
|
||
func init() { | ||
rootCmd.AddCommand(procCmd) | ||
} |
Oops, something went wrong.