- [] radare2 - brew
- [] cutter (radare2) - brew cask
- [] ghidra - brew cask
- [] ida-free - brew cask
- [] nmap - brew
- [] proxychains - brew (https://gist.github.com/allenhuang/3792521)
- [] sqlmap - brew
- [] powershell - brew cask
- [] impacket scripts - git
- [] powersploit - git
This file contains hidden or 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
package main | |
import ( | |
"fmt" | |
"github.com/aws/aws-sdk-go/aws" | |
"github.com/aws/aws-sdk-go/aws/session" | |
"github.com/aws/aws-sdk-go/service/sqs" | |
"os" | |
"flag" | |
) |
This file contains hidden or 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
class Event<T> { | |
private val handlers = arrayListOf<(Event<T>.(T) -> Unit)>() | |
fun plusAssign(handler: Event<T>.(T) -> Unit) { handlers.add(handler) } | |
fun invoke(value: T) { for (handler in handlers) handler(value) } | |
} | |
val e = Event<String>() // define event | |
fun main(args : Array<String>) { | |
e += { println(it) } // subscribe |
This file contains hidden or 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
/** | |
* Copyright 2018 C.J. Campo | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to | |
* deal in the Software without restriction, including without limitation the | |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
* sell copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: | |
* |
This file contains hidden or 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
StackWalker.getInstance().walk(stream -> | |
stream.filter(frame -> frame.getClassName().contains("br.com.caelum") | |
)) | |
.collect(toList()); |
This file contains hidden or 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
[INFO] Analysis Started | |
[INFO] Finished Archive Analyzer (0 seconds) | |
[INFO] Finished File Name Analyzer (0 seconds) | |
[INFO] Finished Jar Analyzer (0 seconds) | |
[INFO] Finished Central Analyzer (2 seconds) | |
[INFO] Finished Dependency Merging Analyzer (0 seconds) | |
[INFO] Finished Version Filter Analyzer (0 seconds) | |
[INFO] Finished Hint Analyzer (0 seconds) | |
[INFO] Created CPE Index (1 seconds) | |
[INFO] Finished CPE Analyzer (2 seconds) |
This file contains hidden or 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
[INFO] Checking for updates | |
[INFO] NVD CVE requires several updates; this could take a couple of minutes. | |
[INFO] Download Started for NVD CVE - 2002 | |
[INFO] Download Started for NVD CVE - 2003 | |
[INFO] Download Started for NVD CVE - 2004 | |
[INFO] Download Complete for NVD CVE - 2003 (16506 ms) | |
[INFO] Download Started for NVD CVE - 2005 | |
[INFO] Processing Started for NVD CVE - 2003 | |
[INFO] Processing Complete for NVD CVE - 2003 (13580 ms) | |
[INFO] Download Complete for NVD CVE - 2004 (30204 ms) |
This file contains hidden or 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
<profiles> | |
<profile> | |
<id>meuPerfil</id> | |
<repositories> | |
<repository> | |
<id>releases</id> | |
<url>http://artifactory.meu/artifactory/libs-release</url> | |
<releases> | |
<enabled>true</enabled> | |
<updatePolicy>never</updatePolicy> |
This file contains hidden or 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
<build> | |
<plugins> | |
<!-- OWASP Dependency Check Analysis --> | |
<plugin> | |
<groupId>org.owasp</groupId> | |
<artifactId>dependency-check-maven</artifactId> | |
<version>1.4.5</version> | |
<executions> | |
<execution> | |
<goals> |
This file contains hidden or 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
<threshold>Low</threshold> <!-- low é para auditores de seguranca --> |
NewerOlder