package
Version:
v0.1.3
Opens a new window with list of versions in this module.
Published: Feb 7, 2023
License: MIT
Opens a new window with license information.
Imports: 10
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
Antiforensics Examples
Wipe a file
package main
import (
"log"
"github.com/D3Ext/maldev/antiforensics"
)
func main(){
err = antiforensics.WipeFile("./file.txt")
if err != nil {
log.Fatal(err)
}
}
Timestomping
package main
import (
"log"
"github.com/D3Ext/maldev/antiforensics"
)
func main(){
err := antiforensics.TimestompFile("./file.txt", 5) // func TimestompFile(filename string, count int) (error)
if err != nil {
log.Fatal(err)
}
}
Documentation
¶
Source Files
¶
Click to show internal directories.
Click to hide internal directories.