Skip to content

Instantly share code, notes, and snippets.

View JoeyBurzynski's full-sized avatar
💭
Hacking away on @EdgeSEO tools.

Joey Burzynski JoeyBurzynski

💭
Hacking away on @EdgeSEO tools.
View GitHub Profile
@JoeyBurzynski
JoeyBurzynski / how-to-deal-with-unhandled-exceptions-and-unhandled-promise-rejections-in-javascript.md
Last active October 7, 2022 07:54
JavaScript: How to Deal with Unhandled Exceptions & Unhandled Promise Rejections in JavaScript
@JoeyBurzynski
JoeyBurzynski / wpengine-reverse-proxy-configuration-2022.md
Created June 25, 2022 13:06
Tutorial: How to Configure a Reverse Proxy for Use with WPEngine/Wordpress Sites [2022]

Configuration: How to Configure a Reverse Proxy for Use with WPEngine/Wordpress Sites [2022]

Configure an external proxy from domain.com to install1.wpengine.com.

Make sure you send the Cache-Control $http_cache_control header in your requests to WP Engine. If this isn’t configured you will be permanently logged into /wp-admin and it will not auto logout. That can be a serious security concern.

Make sure you pass the X-Forwarded-For headers to WP Engine so that we see the actual IPs and not the proxy IP. If this isn’t in place, you will get blocked by WP Engine’s firewall.

@JoeyBurzynski
JoeyBurzynski / wpengine-stop-htaccess-rewrites.php
Created June 25, 2022 12:36
WP Plugin Stop htaccess rewrites
<?php
/**
* Stop htaccess rewrites
*
* @package wpengine-stop-htaccess-rewrites
* @author wpengine
* @license Proprietary
*
* @wordpress-muplugin
@JoeyBurzynski
JoeyBurzynski / web-design-inspiration-and-best-front-end-development-tools.md
Last active July 7, 2025 12:02
Web Design Inspiration: Best Practice, Blogs, Guides, Lists, Web Design Inspiration & Front-end Development Tools
@JoeyBurzynski
JoeyBurzynski / attack-surface-management.md
Last active June 21, 2022 20:32
Attack Surface Management (ASM) Platform | Censys.io

Attack Surface Management (ASM) Platform / Censys

At Censys, we can see it all. Our world-leading attack surface management platform gives organizations a sixth sense — relentlessly monitoring assets, seeing the unseen, and proactively giving security teams an opportunity to solve issues before they have a chance to take place.

This isn’t security by defense. This is a system of vigilant offense that constantly looks at everything from HTTP hosts to message brokers to remote desktop exposure to network printers. Seeking potential breaches, shoring up leaks in your protocols, and mapping any potential weak points. Helping you stay one step ahead of risk, and seeing threats before they become complications.

What is Attack Surface Management?

Attack Surface Management is an emerging approach to proactive security measures. At Censys, we don’t just strive to be industry leaders. We aim to be industry creators, h

@JoeyBurzynski
JoeyBurzynski / attack-surface-management.md
Created May 25, 2022 13:18
What is attack surface management?

What is attack surface management?

Attack surface is a measure of the total available ways for malicious actors to compromise a system.

Attack surface management (ASM) is a component of modern security programs that focuses on measuring, monitoring and quantifying the vulnerabilities that exist in an organization’s IT environment. Attack surface management involves the use of tools, processes and protocols to identify, quantify and manage an organization’s attack surface. The goals of attack surface management are to reduce the number of vulnerabilities that exist on a network, reduce the time it takes to identify and remediate vulnerabilities and decrease the likelihood that an attacker will successfully compromise a system. Attack surface management is focused on managing vulnerabilities, rather than eliminating them.

Healthcare is the US’s largest industry, and according to various projections, by 2020, healthcare spending will account for 19% of the US economy.

@JoeyBurzynski
JoeyBurzynski / keybase.md
Created May 5, 2022 09:14
Keybase.io: Joey Burzynski

Keybase proof

I hereby claim:

  • I am joeyburzynski on github.
  • I am joeyburzynski (https://keybase.io/joeyburzynski) on keybase.
  • I have a public key ASBy9EEkdD7QInO-0zFiu3zn9w3TFJdZbziBO7TcOwvY4Qo

To claim this, I am signing this object:

@JoeyBurzynski
JoeyBurzynski / Reference: Bash Redirection - How to Use Bash Redirection.md
Created May 4, 2022 10:22
Reference: Bash Redirection - How to Use Bash Redirection

Reference: Bash Redirection

Before a command is executed, its input and output may be redirected using a special notation interpreted by the shell. Redirection allows commands’ file handles to be duplicated, opened, closed, made to refer to different files, and can change the files the command reads from and writes to. Redirection may also be used to modify file handles in the current shell execution environment. The following redirection operators may precede or appear anywhere within a simple command or may follow a command. Redirections are processed in the order they appear, from left to right.

Each redirection that may be preceded by a file descriptor number may instead be preceded by a word of the form {varname}. In this case, for each redirection operator except &gt;&amp;- and &lt;&amp;-, the shell will allocate a file descriptor greater than 10 and assign it to {varname}. If &gt;&amp;-

@JoeyBurzynski
JoeyBurzynski / shim.html
Last active January 31, 2023 22:12
Shim: Non-blocking Polyfill [Promise, fetch, Object.assign, URLSearchParams]
<script>
window.Promise || document.write('<script src="https://unpkg.com/[email protected]/dist/es6-promise.min.js"><\/script>');
window.fetch || document.write('<script src="https://unpkg.com/[email protected]/fetch.js"><\/script>');
window.URLSearchParams || document.write('<script src="https://unpkg.com/@ungap/[email protected]/min.js"><\/script>');
Object.assign=Object.assign||function(r){for(var n,a=1;a<arguments.length;a++)for(var s in n=arguments[a]||{})n.hasOwnProperty(s)&&(r[s]=n[s]);return r};
</script>
@JoeyBurzynski
JoeyBurzynski / 4- Entity Recognizer DL.ipynb
Created April 20, 2022 10:41
Entity Recognizer DL by Spark NLP
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.