securitywing.com Open in urlscan Pro
50.30.38.169  Public Scan

Submitted URL: http://securitywing.com/
Effective URL: https://securitywing.com/
Submission: On May 24 via manual from US — Scanned from US

Form analysis 1 forms found in the DOM

GET https://securitywing.com/

<form class="search-form" method="get" action="https://securitywing.com/" role="search"><label class="search-form-label screen-reader-text" for="searchform-1">Search the site ...</label><input class="search-form-input" type="search" name="s"
    id="searchform-1" placeholder="Search the site ..."><input class="search-form-submit" type="submit" value="Search">
  <meta content="https://securitywing.com/?s={s}">
</form>

Text Content

 * Skip to main content
 * Skip to primary sidebar
 * Skip to footer


SECURITYWING

Menu
Menu
 * About
 * Must Read
   * * IIS Performance Boost
     * RFID Security
     * Web App Security Testing
     * How to Secure Home Network
     * Prevent Cross-Site Scripting Attacks
     * Renew Self-Signed Certificates
   * * Penetration Testing Tools
     * VPN Concentrator
     * Forensic Investigation Tools
     * Digital Certificates
     * Cloud Security Issues
     * Advanced Evasion Prevention
     * Firewall Types
     * Tips to Prevent Data Exfiltration
     * Classified Info Handling
   * * MySQL Security
     * Definition of 7 Types of Malware
     * VOIP Security
     * Why Antivirus Software Fails
     * 15 Network Security Vulnerabilities
     * Web App Security
   * * IT Security Standards
     * Types of Virtualization
     * Android Security
     * Digital Signature
     * Advanced Malware Protection
   * Close
 * Consultancy
 * Contact


HOW TO INSTALL AWS CLI AND TERRAFORM IN JENKINS DOCKER CONTAINER

by wing

To install a AWS CLI in a Jenkins running on a docker container, you can follow
the below steps. But it would be better if you create  a custom  Jenkins docker
file with AWS CLI and then create a custom image to spin up the Jenkins
container. But sometimes, you may need to install various packages.   Install
AWS CLI in Jenkins Docker Container Take a note of the … [Read more...] about
How to Install AWS CLI and Terraform in Jenkins Docker Container


HOW TO RESOLVE ROUTE 53 PRIVATED HOSTED ZONE FROM A VPC IN A DIFFERENT AWS
ACCOUNT

by wing

When you have mulitiple AWS accounts and a specic privated DNS  name that you
want to resovled from a VPC in a different account you need to allow the hosted
zone to to be resolver from a differnet acccount. For example, you have a hoste
zone in account A  with serveral types of recoords and you want a DNS query for
that zone get resovled from a specific VPC in account B. To … [Read more...]
about How to Resolve Route 53 Privated Hosted zone from a VPC in a different AWS
account


3 EASY STEPS TO CREATE EKS(KUBERNETES) CLUSTER IN AWS

by wing

One of the most easy to use tool for the beginners is that eskctl that help to
quickly deploy Kubernetes cluster in AWS. We will share with you easy 3 steps
creating a AWS managed EKS cluster with one EC2 worker node. To access the
cluster we will install a dashboard using kube proxy that will allow you to
access the dashboard from your local machine. install eskctl tool … [Read
more...] about 3 Easy Steps to Create EKS(kubernetes) Cluster in AWS


HOW TO ENABLE AWS CROSS ACCOUNT ECR IMAGE REPLICATION

by wing

Docker image hosted in ECR in  a AWS account can be replicated into another AWS
account by enabling the cross account replication setup. For example, you host a
docker image in AWS account A and you have a ECS cluster where you need to
deploy the docker image.   … [Read more...] about How to Enable AWS Cross
Account ECR Image Replication


HOW TO PERMANENTLY AUTO-MOUNT EFF VOLUME TO EC2 INSTANCE USING USER-DATA

by wing

Amazon elastic file system( EFS) can be mounted automatically using user-data
while spinning up the Instance. This post aims to show both auto and manual
mount of EFS volume. Before you start mounting the EFS volume, make sure that
you have the EFS ID with you and the EFS security group is open on port 2049 for
the EC2 IP or subnets. … [Read more...] about How to Permanently Auto-Mount EFF
Volume to EC2 instance using User-Data


3 STEPS TO SETUP SSH REMOTE ACCESS TO EC2 FROM CLOUD9

by wing

When you need to connect securely to  an already running EC2 instance via SSH
from a Cloud9, you need to prepare the instance for Cloud9. AWS Cloud9  generate
a SSH public key to connect securely to your EC2 server. To start a secure
connection from Cloud9 via SSH you need to setp the the SSH key, generated by
Cloud9, to EC2.   … [Read more...] about 3 Steps to setup SSH remote Access to
EC2 from Cloud9


3 STEPS TO SETUP EC2 EBS VOLUME DISK SPACE MONITORING USING CLOUDWATCH

by wing

The default monitoring of Amazon EC2 does not track the EBS disk space. To
monitor disk space in EC2 instance, you need can either manually installed
Cloudwatch Agent or can use SSM to install the agent. After installing you Step
1. Instal cloudwatch agent sudo yum -y install amazon-cloudwatch-agent Step 2.
create a config.json file  in the following … [Read more...] about 3 Steps to
Setup EC2 EBS Volume Disk Space Monitoring using Cloudwatch


3 EASY STEPS TO CREATE AND DEPLOY AWS SAM TEMPLATE

by wing

AWS SAM template is an abstraction layer, runs on the top of CloudFormation,
 for creating serverless resources. So, when you run a SAM template to create a
Lambda function or an  API gateway, it generates a CloudFormation stack behind
the scene. The main purpose is ease-of-management of serverless resources in
AWS.  SAM Vs. CloudFormation: when to use AWS  SAM instead of … [Read more...]
about 3 Easy Steps to Create and Deploy AWS SAM Template


HOW TO CREATE A HELM CHART IN WINDOWS FOR MINIKUBE

by wing

Helm package manager is used to deploy applications in the Kubernetes cluster.
By packaging your app using helm allows to deploy it with one command instead of
using “kubectl create/apply” command. Another benefit of using helm is that you
can easily upgrade and rollback your apps when required because helm uses
version control.   Follow the three simple steps creating … [Read more...] about
How to Create a Helm Chart in Windows for Minikube


5 STEPS TO SETUP A NEXUS3 REPOSITORY USING DOCKER ON VIRTUAL BOX.

by wing

Scenario: To create a private docker repository in your local machine for
development purpose, you can deploy a Nexus3 docker image with a  persistent
volume in a minute. You can either install the docker in your host machine or
you can install a Ubuntu virtual box and then install docker on it. Step1: At
first create Ubuntu virtual machine and then install docker. Next, pull … [Read
more...] about 5 Steps to Setup a Nexus3 repository using Docker on Virtual Box.


9 TYPES OF DIGITAL SECURITY RISKS

by wing

Having an overall understanding of the existing digital security risk can help
to design a decisive risk mitigation plan.  Both small and large businesses are
exposed to similar types of digital risk, which can cause serious damage to
businesses unless handled carefully.  The list below explains the nine types of
digital risks you need to stay alert of. 1. Data risk- as you … [Read more...]
about 9 Types of Digital Security Risks


5 STEPS TO AUTO-CREATE HELM  CHARTS AND UPLOAD TO S3 USING JENKINS

by wing

After packaging the helm charts, you need to store it in a repository so that it
can be easily deployed using helm in the Kubernetes or Minikube. This post aims
to show you how to set up the AWS S3 bucket as a Helm chart repository. Using
the steps below you will be able to setup Helm S3 repo for both Minikube and
KOPs created cluster hosted in AWS.  Scenario:  we will create … [Read more...]
about 5 Steps to Auto-Create Helm  Charts and upload to S3 Using Jenkins


3 STEPS TO INSTALL KUBECTL, HELM 3 AND S3 PLUGIN IN UBUNTU TO STORE CHARTS IN S3
BUCKET

by wing

This post aims to show you how to install Kubectl, Helm 3 and S3 plugin so that
you can easily store the chart in a S3 bucket form your Ubuntu machine. Though I
always use an automated approach to create and store the helm chart, I had to
create a helm chart in Ubuntu in order to identify and Helm S3 plugin
compatibility issue. 1. Install kubectl To install kubectl in … [Read more...]
about 3 Steps to Install Kubectl, Helm 3 and S3 Plugin in Ubuntu to Store Charts
in S3 Bucket


3 STEPS TO INSTALL MINIKUBE ON WINDOWS 10

by wing

Minikube helps to create the Kubernetes environment on a personal computer. This
post aims to show you a few simple steps to install Minikube on Windows Machine.
Before installing minikube, make sure you have installed kubectl. Step 1:
Install kubectl Go to
https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl-on-windows
and following the link under “Install … [Read more...] about 3 Steps to Install
Minikube on Windows 10


HOW TO QUERY AWS CLOUDTRAIL LOGS WITH ATHENA

by wing

AWS CloudTrail logs all the API calls made to the AWS account. You do not
require any tool to view  the last 90 days of events. But if you want to view
the logs older than three months you have to setup a S3 bucket to store it  and
then you can analyse the logs.  This post aims to show you how you can use AWS
Athena to view AWS logs stored in S3 bucket. … [Read more...] about How to Query
AWS CloudTrail Logs with Athena


HOW TO RUN MYSQL DATABASE ANONYMIZE SCRIPT FROM LINUX BASH SHELL

by wing

How to run mysql annoymise scripot from bash shell. To anonymize the production
database for using in the test environment,  you can create a simple script that
can run from the Linux Bash shell with a single command. At first download a
sample database: # wget
https://github.com/datacharmer/test_db/archive/master.zip Next, unzip the file
#  unzip master.zip … [Read more...] about How to Run MySQL Database Anonymize
Script from Linux Bash Shell


HOW TO MOUNT AMAZON EFS IN EC2-CENTOS INSTANCE

by wing

With Amazon EFS(elastic file system)mounted in the EC2, you can signifincalty
reudce cost of storge becaues you pay only for the storgrage used by your
applications/data. EFS supports NFS In the AWS console, search for EFS and then
create a volume. When you attahce a security group in the EFS, make sure it
allows traffc on port 22 from the EC2 instance. Also, take note of the … [Read
more...] about How to Mount Amazon EFS in EC2-CentOS Instance


HOW TO SCHEDULE AWS EC2 START AND STOP TIME USING LAMBDA AND CLOUDWATCH

by wing

To save your AWS cloud  operational cost, you can schedule EC2 instanes' start
and stop time using Lambda function.  When you define a lamda function, you need
to setup a trigger, which specifies the event that can invoke the lambda
fucntions. In this post, we will use the a specific UTC time as a trigger .  For
example, you want to start EC2 instances at  06:30 UTC and want to … [Read
more...] about How to Schedule AWS EC2 Start and stop time using Lambda and
Cloudwatch


DOCKER COMMAND LIST WITH EXAMPLES IN LINUX

by wing

Spinning up a docker container takes a few seconds with a simple command.Once
the containers is up and running you need to customize and manage it to fit for
the apps and other requirements. I have put together a number of useful command
with examples that a beginner will find handy. Docker MySQL  container
installation commands docker container run -d -p 3306:3306 --name … [Read
more...] about Docker Command List with Examples in Linux

Next Page »


PRIMARY SIDEBAR


CISSP SAMPLE TEST

Take a CISSP Sample Test

CISA IT governance Sample test



Twitter Follow @securitywing




CATEGORIES

 * AWS
 * containers
 * Internet Security and Safety
 * IS Audit
 * IT Security Exams
 * Network Security Tips
 * Off Track
 * Telecom
 * Tutorial




PAGES

 * About
 * Best IT Security Certification Exam
 * CISA IT governance Sample test
 * CISA Sample Test
 * CISSP Sample Test Online
 * Consultancy
 * Contact





POPULAR POSTS

 * How to Renew Self-Signed...
 * 7 Different Types of Fire...
 * 3 Steps to Install Miniku...
 * How to Configure AAA (TAC...
 * How to install a new Goda...
 * Host Based IDS vs Network...
 * 3 Simple Steps to Capture...
 * What is Digital Certifica...
 * 8 Effective Ways to Impro...
 * How to Setup AWS CloudFro...




FOOTER


COPYRIGHTS

Securitywing.com reserves the copyrights of all of its published articles.No
contents of this site is permitted to be published to anywhere else in the
Internet.If any contents are found in any other websites, securitywing reserves
the rights to file a DMCA complaint. But you have the right to use the link of
any relevant article of this site to point from your website if you consider
that it might improve the quality of your article.

Search the site ...


TAGS

audit AWS backup basics browser check cisco cloud computer configuration data
database email firewall gmail hsrp ids iis informaiton internet it kubernetes
linux load balancing malware microsoft network protection redundancy risk router
security security tips server SSL switch test tools vpn vrrp web webserver
website windows wordpress

Copyright © 2010-2022 ·All Rights Reserved · SecurityWing.com