Skip to content

Commit

Permalink
Merge pull request #9 from pwnwriter/v0.1.2
Browse files Browse the repository at this point in the history
V0.1.2
  • Loading branch information
pwnwriter authored Mar 28, 2023
2 parents fedb755 + fd7528e commit d0c7592
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hxn"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = [ "PwnWriter < hey@pwnwriter.xyz >" ]
description = "Blazingly fast tool to grab screenshots of url/webpages from terminal."
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/bytehunt/haylxon"
homepage = "https://github.com/bytehunt/haylxon.git"
license = "MIT"
keywords = ["screenshots", "bug-bounty", "recon", "pwn", "OSINT" ]
categories = ["accessibility", "command-line-utility", "CLI" ]
categories = ["accessibility", "web-programming", "command-line" ]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
15 changes: 4 additions & 11 deletions src/ascii.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
//pub const HYALCON: &str = r"
//╦ ╦┌─┐┬ ┬┬ ┌─┐┌─┐┌┐┌
//╠═╣├─┤└┬┘│ │ │ ││││
//╩ ╩┴ ┴ ┴ ┴─┘└─┘└─┘┘└┘v1.0.0
// by @pwnwriter
//";

pub const BAR: &str = r"
────────────────────────────────
";

pub const HXN: &str = r"
╦ ╦╔═╗╦ ╦╦ ═╗ ╦╔═╗╔╗╔
╠═╣╠═╣╚╦╝║ ╔╩╦╝║ ║║║║
╩ ╩╩ ╩ ╩ ╩═╝ ╚═╚═╝╝╚╝v0.1.1
Shoot before the blink 
╦ ╦╔═╗╦ ╦╦ ╔═╗╔╗╔
╠═╣╠═╣╚╦╝║ 𝖃║ ║║║║
╩ ╩╩ ╩ ╩ ╩═╝ ╚═╝╝╚╝v0.1.2
Shoot before the blink 
by @PwnWriter
";
6 changes: 4 additions & 2 deletions src/colors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
pub const CYAN: &str = "\x1b[36m"; //( bright, light blue-green color)
pub const GREEN: &str = "\x1b[32m"; //( bright, medium green color)
pub const BLUE: &str = "\x1b[34m"; //( bright, medium blue color)
//pub const WHITE: &str = "\x1B[37m"; //( bright, pale gray color)
pub const RED: &str = "\x1b[31m"; //( bright, medium red color)
pub const YELLOW: &str = "\x1B[32m"; //( bright, medium yellow color)
//pub const MAGENTAA: &str = "\x1b[35m"; //( bright, medium pinkish-purple color)
pub const YELLOW_BRIGHT: &str = "\x1B[93m"; //( very bright, light yellow color)
pub const RESET: &str = "\x1B[0m"; //( resets the text color to the default)

// unused colors rn :-
//pub const MAGENTAA: &str = "\x1b[35m"; //( bright, medium pinkish-purple color)
//pub const WHITE: &str = "\x1B[37m"; //( bright, pale gray color)

0 comments on commit d0c7592

Please # to comment.