Skip to content

Programming by Design

If you're not prepared to be wrong, you'll never come up with anything original. – Sir Ken Robinson

  • About
  • Java-PbD
  • C-PbD
  • ASM-PbD
  • Algorithms
  • Other

Author: William Jojo

CIS-125 Project 7 – Password Strength

Posted on March 2, 2019April 17, 2019 By William Jojo
CISS-125-Project

For this project you will configure the Nbvcxz password strength utility Learning outcomes Planning and design. VMware guest modifications. Modifying application software. Use of GitHub to acquire software. Use maven build environment. Understanding password entropy. Overview Determining the strength of passwords can be difficult. There are many metering tools available and these should be used … Read More “CIS-125 Project 7 – Password Strength” »

CISS-125 Project 4 – Server Hardening

Posted on January 30, 2019January 30, 2019 By William Jojo
CISS-125-Project

For this project you will perform several hardening techniques to your VMs. Learning outcomes Planning and design. VMware guest modifications. Modifying application software. Security settings on multiple platforms. Ubuntu Using the Ubuntu Hardening documentation and the Network Details documentation, perform the following: First: Apply the recommended hardening items minus the SSH secure login. For the … Read More “CISS-125 Project 4 – Server Hardening” »

Ubuntu Hardening

Posted on January 30, 2019January 30, 2019 By William Jojo
Ciss-125

There are a variety of Ubuntu hardening techniques out there. These are just a few that should be of interest. Secure shared memory Shared memory can be used as an attack vector for running services. Edit the /etc/fstab file and add the following to the bottom: tmpfs /run/shm tmpfs defaults,noexec,nosuid 0 0 A reboot is … Read More “Ubuntu Hardening” »

CISS-125 Project 3 – HTTPS

Posted on January 28, 2019March 11, 2019 By William Jojo
CISS-125-Project

For this project you will install certificates into web servers (Apache and IIS) and configure them to support HTTPS. Learning outcomes Planning and design. VMware guest modifications. Modifying application software. Secure Communications and Protocols. Installing key and certificates for HTTPS. Apache on Ubuntu If you have not already done so, install the Apache server on … Read More “CISS-125 Project 3 – HTTPS” »

Cert script

Posted on January 27, 2019 By William Jojo
Uncategorized

#!/bin/bash -x set -e for C in `echo root-ca intermediate`; do mkdir $C cd $C mkdir certs crl newcerts private cd .. echo 1000 > $C/serial touch $C/index.txt $C/index.txt.attr echo ‘ [ ca ] default_ca = CA_default [ CA_default ] dir = ‘$C’ # Where everything is kept certs = $dir/certs # Where the issued … Read More “Cert script” »

CISS-125 Project 2 – SSH and Certificates

Posted on January 26, 2019January 28, 2019 By William Jojo
CISS-125-Project

In this project we will use some secure connections with a terminal protocol called SSH. We will also create some certificates that will be used in another project. Learning outcomes Planning and design. Enhancing existing virtualization and networking skills. VMware guest modifications. Installing application software. Public Key Infrastcture. Secure Communications and Protocols. Generate key and … Read More “CISS-125 Project 2 – SSH and Certificates” »

CISS-125 Project 1 – Planning!

Posted on January 24, 2019February 13, 2019 By William Jojo
CISS-125-Project

CISS-125 Project 1 (10 points) (Updated 1/24/2019) You have been given three (3) virtual machines (VMs) in a resource pool that bears your name. Within these VMs, you are to configure the networking and hostnames for each. Learning outcomes Planning and design. Enhancing existing virtualization and networking skills. VMware guest modifications. Installing updates and application … Read More “CISS-125 Project 1 – Planning!” »

Before you paste that code you found during your online search…

Posted on January 10, 2019July 26, 2024 By William Jojo
Theory

(Updated July 26, 2024) “Um, I’ll tell you the problem with the scientific power that you’re using here: it didn’t require any discipline to attain it. You read what others had done, and you took the next step. You didn’t earn the knowledge for yourselves, so you don’t take any responsibility for it.” – Dr. … Read More “Before you paste that code you found during your online search…” »

CISS-150 Project 1 – Planning!

Posted on December 18, 2018August 30, 2021 By William Jojo
CISS-150-Project

CISS-150 Project 1 (10 points) (Updated August 29, 2021) Overview You have been given three (3) virtual machines (VMs) in a resource pool that bears your name. Within these VMs, you are to configure the networking for each. You will be given details and videos to watch to understand what needs to be done. Learning … Read More “CISS-150 Project 1 – Planning!” »

Example using columns

Posted on November 30, 2018January 11, 2021 By William Jojo
Uncategorized

public class CharEx { public static void main(String[] args) { char c; c = ‘a’; System.out.println(c); if ( c >= ‘0’ && c = ‘A’ && c = ‘a’ && c

Posts pagination

Previous 1 … 13 14 15 … 18 Next

Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

Copyright © 2018 – 2025 Programming by Design.