-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
1,703 additions
and
44 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 |
---|---|---|
|
@@ -152,3 +152,5 @@ temp/ | |
|
||
# End of https://www.gitignore.io/api/node,linux,macos | ||
public/assets/main.json | ||
|
||
.vercel |
This file was deleted.
Oops, something went wrong.
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,70 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
|
||
<meta name="description" content="Security Tools, Curated list of security tools for Hackers & Builders!"> | ||
<meta name="keywords" | ||
content="Security Tools, Cloud Security, InfoSec, Information Security, Tools, DevOps, DevSecOps, Automation, Security Automation, Github, SecOps, Penetration Testing, Pentest, Vulnerability Assessment, Risk Analysis, Risk Assessment, CLI, Utilities, Hackers, Developers, Opensource, AWS, Azure, GCP, Security Hardening, Container Security, Docker, Kubernetes, CIS Benchmarks, Application Security, RBAC, Python, Bash, Shell Scripting, Golang, SIEM, CloudNative, Red Team, Blue Team"> | ||
<meta name="author" content="Madhu Akula"> | ||
|
||
<link rel="icon" href="/favicon.ico" /> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" /> | ||
<title>Security Tools | Curated list of security tools for Hackers & Builders!</title> | ||
<style> | ||
html { | ||
--color-black: #0b0c10; | ||
--color-grey: #1f2833; | ||
--color-light-grey: #c5c6c7; | ||
--color-light-cyan: #66fcf1; | ||
--color-dark-cyan: #45a29e; | ||
|
||
--yellow: hsl(48, 100%, 67%); | ||
--yellow-dark: #e6bc11; | ||
} | ||
|
||
html, | ||
body, | ||
.footer, | ||
strong { | ||
background-color: var(--color-grey); | ||
color: white; | ||
} | ||
|
||
a:hover { | ||
color: var(--color-black); | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<noscript> | ||
<strong>We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> | ||
</noscript> | ||
<div id="app"></div> | ||
<!-- built files will be auto injected --> | ||
<footer class="footer"> | ||
<div class="content has-text-centered"> | ||
<p> | ||
© <strong>Security Tools</strong> curated and | ||
maintained by | ||
<a href="https://madhuakula.com" target="_blank" style="color: var(--yellow);">Madhu Akula</a> | ||
</p> | ||
</div> | ||
</footer> | ||
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> | ||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-15752161-3"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { dataLayer.push(arguments); } | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'UA-15752161-3'); | ||
</script> | ||
<script type="module" src="/src/main.js"></script> | ||
</body> | ||
</html> |
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
Oops, something went wrong.