What is a Hacker?

Question
You have seen the word “hacker” appear in different contexts. You have seen it used to describe a cybercriminal. Moreover some companies proudly claim that they employ no hackers while only hiring trained software developers. In some articles the term hacker has a positive connotation. What is a hacker?

Answer
“Hacking tends to be a misunderstood topic, and the media likes to sensationalize,

What Are Some Ways to Prevent XSS Attacks with a Web Page That Uses JavaScript?

Problem scenario
You know that cross-site scripting (aka XSS) attacks are a big concern in today’s world. OWASP places XSS security risks as the seventh biggest web application risk as of June 2020. What are some techniques to stop such attacks from happening when designing a website that uses JavaScript?

Possible Solution #1
Have the HTML and JavaScript validate and escape regularly throughout the code.

How Do You Find the Owner of an AWS Resource?

Problem scenario
In AWS you find some components, such as a Security Group, has an owner. You cannot find the owner in IAM. How do you learn more about this user?

Solution
The owner is not an IAM user. In the AWS Console, go to Support -Support Center. Search for the owner number there. You may have different account aliases. If you log into each one,

How Do You Change the Version of Python that Ansible Uses?

Problem scenario
You are using Ansible with -vvv to see what Python version it is using. (Or you use ansible –version.) You see an incorrect version of Python being used.

You tried ansible_python_interpreter=/usr/bin/python3 in your playbook and in the ansible.cfg file. Neither worked.

What should you do?

Solution
In the playbook, find the hosts stanza. Underneath it use this (where python3 is the version you want and “/usr/bin” is the path to it):

vars:
ansible_python_interpreter: /usr/bin/python3 …

How Do You Paste Copied Content without the Formatting Using a Mac?

Problem scenario
You have a Mac and want to copy heavily-formatted text from a web page or Excel spreadsheet into TextEdit. But you do not want the formatting to come with it. How do you do this?

Solution

  1. Copy it as you normally would.
  2. If you are using a Microsoft keyboard, use Alt-Windows-Shift-v to paste it.

How Do You Troubleshoot the Unexpected Output to a grep Command “Binary file (standard input) matches”?

Problem scenario
When grepping a file or output, you get “Binary file (standard input) matches”. You only see a subportion of the matching strings. What should you do?

Solution
Use the -a flag. Here is an example:
cat foobar.txt | grep -a coolterm

How Do You Fix a Drain Pop Up Stopper That Will Not Go Up and Down or Move Vertically Like It Should?

Problem scenario
Your drain stopper in your bathroom sink has broken. You can no longer place a plastic/chrome pop-up stopper to be connected to a rod inches into the drain. The metal or plastic protrusion rod is no longer visible in the drain. It broke off and fell into the drain pipe (e.g., the P-Trap). How do you fix this problem with replacing the fewest amount of tools and parts?

How Do You Fix the Ansible Problem about “libselinux-python”?

Problem scenario
You try to run an Ansible playbook, but you get an error like this: “msg: Aborting target uses selinux but python bindings (libselinux-python) aren’t installed!”

You are using a Red Hat derivative of Linux (e.g., Red Hat Enterprise Linux, CentOS or Fedora) and Python 3. What should you do?

Solution
Prerequisite

Install pip3. If you need assistance, see this posting.