I hereby claim:
- I am mertcangokgoz on github.
- I am gokgozmertcan (https://keybase.io/gokgozmertcan) on keybase.
- I have a public key whose fingerprint is DD03 DA4B A4D3 5B77 36ED D2B9 B701 21B2 6132 ACB8
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## # | |
# Yet-Another-Bench-Script # | |
# v2025-04-20 # | |
# https://github.com/masonr/yet-another-bench-script # | |
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## # | |
Fri May 9 02:03:20 PM +03 2025 | |
Basic System Information: | |
--------------------------------- |
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## # | |
# Yet-Another-Bench-Script # | |
# v2025-01-01 # | |
# https://github.com/masonr/yet-another-bench-script # | |
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## # | |
Wed Jan 29 09:39:45 PM +03 2025 | |
ARM compatibility is considered *experimental* |
# Description: This script decodes MikroTik Neighbor Discovery Protocol (MNDP) packets. | |
# Author: Mertcan GÖKGÖZ | |
# Date: 2024-07-14 | |
# Version: 1.0 | |
import io | |
import struct | |
from enum import Enum | |
- hosts: all | |
tasks: | |
- name: Run CVE-2024-3094 vulnerability check script | |
shell: | | |
set -eu | |
echo "Checking system for CVE-2024-3094 Vulnerability..." | |
echo "https://nvd.nist.gov/vuln/detail/CVE-2024-3094" | |
# find path to liblzma used by sshd |
pagespeed RewriteLevel CoreFilters; | |
pagespeed EnableFilters remove_quotes; | |
pagespeed DisableFilters prioritize_critical_css; | |
pagespeed RewriteLevel OptimizeForBandwidth; | |
pagespeed Domain *.mertcangokgoz.com; | |
pagespeed EnableFilters responsive_images,resize_images,lazyload_images,convert_jpeg_to_progressive; | |
pagespeed EnableFilters combine_css,rewrite_css,fallback_rewrite_css_urls; | |
pagespeed EnableFilters canonicalize_javascript_libraries,rewrite_javascript,defer_javascript; | |
pagespeed EnableFilters collapse_whitespace,extend_cache,trim_urls; | |
pagespeed HttpCacheCompressionLevel 0; |
server { | |
listen 8080; | |
listen [::]:8080; | |
server_name mertcangokgoz.com; | |
{{root}} | |
try_files $uri $uri/ /index.php?$args; | |
index index.php index.html; | |
error_page 404 = @notfound; |
root@debian:~# curl -sL yabs.sh | bash | |
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## # | |
# Yet-Another-Bench-Script # | |
# v2023-09-06 # | |
# https://github.com/masonr/yet-another-bench-script # | |
# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## # | |
Fri 13 Oct 2023 06:20:58 PM EDT | |
Basic System Information: |
import os | |
def center_terminal_output(var: str, space: int = None) -> str: | |
if not space: | |
space = (os.get_terminal_size().columns - len(var.splitlines()[len(var.splitlines()) // 2])) / 2 | |
return "\n".join(" " * space + var for var in var.splitlines()) |
import string | |
import time | |
import warnings | |
from pathlib import Path | |
from random import SystemRandom | |
import requests # pip install requests | |
import requests_random_user_agent # noqa: F401 # pip install requests-random-user-agent | |
from urllib3.exceptions import InsecureRequestWarning |