Skip to content

Instantly share code, notes, and snippets.

@EllieJellyBean
EllieJellyBean / alarm.py
Created October 11, 2021 02:13 — forked from mchow01/alarm.py
A working Scapy program that sniffs traffic on a live work or from a PCAP file. Goal is to expand this to identify basic vulnerabilities (e.g., credentials sent in plaintext)
#!/usr/bin/python3
from scapy.all import *
import argparse
def packetcallback(packet):
try:
# The following is an example of Scapy detecting HTTP traffic
# Please remove this case in your actual lab implementation so it doesn't pollute the alerts
if packet[TCP].dport == 80:
@EllieJellyBean
EllieJellyBean / PetNameData.md
Last active July 17, 2021 16:48
Pet Name Finder Data Examples

Packs:

[
   {
      id: #,
      name: "Team's New Fish",
      owner: userID#,
      users: [ { userId: int, likedNames: [ "string", "string" ], currentIndex: int } ] ,
   },

What does CORS stand for?

  • "Cross-Origin Resource Sharing" - a way to share restricted info from one domain to another domain

Why is it necessary?

  • It allows you to specify who can access your endpoint on the server side.

Why is this important for the Capstone?

  • I think this will be especially important if we create our own API for our capstone project - Security will continue to become more and more of a priority as the apps we develop get more complicated.

An initial plan:

  • What components do you envision needing?

    • App Component
    • Movie Card Component
    • Movies Component
    • Form Component
  • Where will data be stored?

@EllieJellyBean
EllieJellyBean / RancidTomatillos_DTR.md
Created May 11, 2021 21:24
Rancid Tomatillos DTR

Rancid Tomatillos:

Group Member Names: Angie & Ellie

Goals and Expectations for the Project (What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?):

  • A sexy, svelte understanding of React; A good looking, highly functional project that we're both proud to include in our professional portfolios.

Team strengths & collaboration styles (consider discussing your Pairin qualities here):

@EllieJellyBean
EllieJellyBean / Mod3_PreWork.md
Last active May 7, 2021 19:31
Mod 3 Pre-Work Questions

What is a "data model", and how does it relate to the DOM in a front-end application?

  • The "single source of truth". It holds all of the needed information that will be held and/or used in our application. The DOM is the actual visual display of our code and data model.

What is a "framework?" And how does it differ from a "library?"

  • Both a library and a framework is a collection of reusable code for others to reuse. With a library, you have a little more flexibility around when and where you can call the library. With a framework, there's less flexibility. The framework is in charge of the "flow" by providing places to "plug in" your code.

Why should we consider using a framework over vanilla JS like you have been doing in mods 1 and 2?

  • We use frameworks to "keep the UI in sync with the state". Frameworks can help by updating the DOM in a less expensive way. React creates a virtual DOM to check against instead of checking/updating the actual DOM, which is really expensive.
@EllieJellyBean
EllieJellyBean / Mod3_Intermission_Reflections.md
Last active May 6, 2021 18:05
Intermission Reflections for Mod 3
  1. Please list the top 3-5 industries and companies you'll pursue in your job search as of right now.
  • I'm very open to different kinds of industries. Ideally, I'd prefer working in the private sector rather than government or non-profit. I'm open to a tech company, a non-tech company that needs developers, or an agency that takes contracts/projects. I have a background in sales, customer service, and academia. I really enjoy training/mentoring and building relationships with individuals. I'd like to have my hands on code regularly and I'd like to work somewhere that values test-driven development. I'd also like a job where I can work on creating and fostering relationships with clients and/or teammates.
  1. Why did you pick the industries/companies that you listed above? How do they relate to the values and goals you have for yourself in your job search?
  • I'm interested in a position with opportunities to continue my education and have a company-given mentor. I'd also like to work with a company that real
@EllieJellyBean
EllieJellyBean / FitReal_Class_Structure.md
Last active March 29, 2021 21:10
FitLit Partner Project DTR

Planned Out Class Structure

Iteration 1

UserRepository class

new UserRepository(data);

  • Methods: > getUserData => Given a user’s ID, what is their user data? (Grab object based on userData[i].id)
@EllieJellyBean
EllieJellyBean / DTR_HangInThere.md
Last active February 10, 2021 00:04
DTR: Tyler & Ellie

Project:

Group Member Names: Tyler & Ellie

Goals and Expectations for the Project (What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?): We both want to fully understand the concepts introduced in the project. As a team, we both want to get comfortable working together through difficult areas. Success = Completion && Understanding!

Team strengths & collaboration styles (consider discussing your Pairin qualities here): We both feel that communication is one our biggest strengths