Skip to content

Commit d63f5c9

Browse files
committed
chore: replace dead discord link with X/Twitter @anonantics
Discord server (discord.gg/killers) is no longer active. Contact via X/Twitter @anonantics instead.
1 parent 12292e0 commit d63f5c9

7 files changed

Lines changed: 15 additions & 15 deletions

File tree

install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#
99
# NullSec Linux Toolkit Installer
1010
# https://github.com/bad-antics/nullsec-linux
11-
# discord.gg/killers
11+
# x.com/AnonAntics
1212
#
1313

1414
set -e
@@ -34,7 +34,7 @@ banner() {
3434
echo '/_/ |_/\__,_/_/_/ /____/\___/\___/ /_____/_/_/ /_/\__,_/_/|_| '
3535
echo -e "${NC}"
3636
echo -e "${CYAN} [ NullSec Linux Toolkit Installer v${VERSION} ]${NC}"
37-
echo -e "${YELLOW} [ discord.gg/killers for support ]${NC}"
37+
echo -e "${YELLOW} [ x.com/AnonAntics for support ]${NC}"
3838
echo
3939
}
4040

@@ -311,7 +311,7 @@ case "$1" in
311311
echo " anon Anonymity tools"
312312
echo " version Show version"
313313
echo
314-
echo "Join discord.gg/killers for support!"
314+
echo "Join x.com/AnonAntics for support!"
315315
;;
316316
*)
317317
echo "Unknown command: $1"
@@ -358,7 +358,7 @@ print_success() {
358358
echo " nullsec harden --profile maximum"
359359
echo " nullsec anon --tor --mac-spoof"
360360
echo
361-
echo -e "${YELLOW}Join discord.gg/killers for premium tools!${NC}"
361+
echo -e "${YELLOW}Join x.com/AnonAntics for premium tools!${NC}"
362362
echo
363363
}
364364

scripts/create-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ See SHA256SUMS and MD5SUMS files for verification.
131131
## Support
132132
133133
- GitHub: https://github.com/bad-antics/nullsec-linux/issues
134-
- Discord: https://discord.gg/killers
134+
- Discord: https://x.com/AnonAntics
135135
- Wiki: https://github.com/bad-antics/nullsec-wiki
136136
NOTES
137137

src/c/process_injector.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* ═══════════════════════════════════════════════════════════════════
33
* NULLSEC LINUX C PROCESS INJECTOR
44
* Low-level process manipulation and injection
5-
* @author bad-antics | discord.gg/killers
5+
* @author bad-antics | x.com/AnonAntics
66
* ═══════════════════════════════════════════════════════════════════
77
*/
88

@@ -24,7 +24,7 @@
2424

2525
#define VERSION "2.0.0"
2626
#define AUTHOR "bad-antics"
27-
#define DISCORD "discord.gg/killers"
27+
#define DISCORD "x.com/AnonAntics"
2828

2929
#define COLOR_RESET "\x1b[0m"
3030
#define COLOR_RED "\x1b[31m"

src/go/network_scanner.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* ═══════════════════════════════════════════════════════════════════
33
* NULLSEC LINUX GO NETWORK SCANNER
44
* Advanced port scanning and network reconnaissance
5-
* @author bad-antics | discord.gg/killers
5+
* @author bad-antics | x.com/AnonAntics
66
* ═══════════════════════════════════════════════════════════════════
77
*/
88

@@ -26,7 +26,7 @@ import (
2626
const (
2727
VERSION = "2.0.0"
2828
AUTHOR = "bad-antics"
29-
DISCORD = "discord.gg/killers"
29+
DISCORD = "x.com/AnonAntics"
3030
)
3131

3232
const BANNER = `

src/ruby/process_hollow_detector.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# ═══════════════════════════════════════════════════════════════════
44
# NULLSEC Linux Process Hollowing Detector
55
# Detect process injection and hollowing techniques
6-
# @author bad-antics | discord.gg/killers
6+
# @author bad-antics | x.com/AnonAntics
77
# ═══════════════════════════════════════════════════════════════════
88

99
require 'fileutils'
@@ -12,7 +12,7 @@
1212

1313
VERSION = '2.0.0'
1414
AUTHOR = 'bad-antics'
15-
DISCORD = 'discord.gg/killers'
15+
DISCORD = 'x.com/AnonAntics'
1616

1717
BANNER = <<~BANNER
1818
╭──────────────────────────────────────────╮

src/rust/system_monitor.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ═══════════════════════════════════════════════════════════════════
22
// NULLSEC LINUX RUST SYSTEM MONITOR
33
// High-performance system monitoring and analysis
4-
// @author bad-antics | discord.gg/killers
4+
// @author bad-antics | x.com/AnonAntics
55
// ═══════════════════════════════════════════════════════════════════
66

77
use std::collections::HashMap;
@@ -14,7 +14,7 @@ use std::time::{Duration, Instant};
1414

1515
const VERSION: &str = "2.0.0";
1616
const AUTHOR: &str = "bad-antics";
17-
const DISCORD: &str = "discord.gg/killers";
17+
const DISCORD: &str = "x.com/AnonAntics";
1818

1919
const BANNER: &str = r#"
2020
╭──────────────────────────────────────────╮

src/zig/kernel_inspector.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ═══════════════════════════════════════════════════════════════════
22
// NULLSEC LINUX ZIG KERNEL INSPECTOR
33
// Low-level Linux kernel analysis and inspection
4-
// @author bad-antics | discord.gg/killers
4+
// @author bad-antics | x.com/AnonAntics
55
// ═══════════════════════════════════════════════════════════════════
66

77
const std = @import("std");
@@ -11,7 +11,7 @@ const fmt = std.fmt;
1111

1212
const VERSION = "2.0.0";
1313
const AUTHOR = "bad-antics";
14-
const DISCORD = "discord.gg/killers";
14+
const DISCORD = "x.com/AnonAntics";
1515

1616
const BANNER =
1717
\\

0 commit comments

Comments
 (0)