npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

codered-steganography

v1.0.0

Published

Encode text inside images

Downloads

4

Readme

codered-steganography

CodeRED steganography project

Purpose

While watching NCIS (S5E3), I had this nifty idea to learn more about Steganography. I've been wanting to do something like it ever since, so during CodeRED: Liftoff I proposed to make something like it.

##Description Stego is a project by Austin Jackson, Matt Nyman, Arnaud Balma, and Ismael Almaguer that was made in 24 hours at CodeRED: Liftoff 2015. Steganography is a method of concealing data within other data. In our application, we use steganography with PNG images to hide text and entire files within them. We've also implemented optional, password-protected AES-256 encryption of the hidden data, to insure safety.

##Prerequisites

  • Requires node.js and npm to be installed

##Installation and running

  • Clone the repository: git clone https://github.com/au5ton/codered-steganography.git
  • CD into the directory: cd codered-steganography
  • Install the dependencies: npm install
  • Run the server: node webserver.js
  • Open the website: navigate to localhost:3000 in your web browser
  • You have the site running!

##How to use

  • Take any PNG image (We've given you some files to mess around with in the Test Files folder)

  • Take any file under half the size of the PNG image

  • Use the Encode section to hide your file in the PNG image (a password is optional, but you have to remember it!)

  • After pressing the submit button, you will be redirected to your new PNG image which contains the file you hid in it. If it doesn't download, right-click and Save As.

  • Congratulations! You've saved a file within another file, super low-key and awesome. Even better if you used a password and encrypted it.

  • Now, what good is randomly encoding this data if I can't get it back?

  • Navigate to the Decode section of the website. You'll have to go back to the homepage.

  • In your Decode section, input only the PNG that you've encoded. Don't put the wrong one. In expected type, put the type of data you're expecting to get back from the decoding process. (If you encoded a file, select file, etc). If you encrypted your data with a password, now would be the time to input that same password. Once you submit, you'll either be greated with a bad password error, or your hidden file will be downloaded through your browser.