Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/sudo ruby
#
# revealer.rb -- Deobfuscate GHE .rb files.
#
# This is simple:
# Every obfuscated file in the GHE VM contains the following code:
#
# > require "ruby_concealer.so"
# > __ruby_concealer__ "..."
@arcreative
arcreative / Dockerfile
Created February 3, 2023 19:38
SunPower PVS5/PVS6 Proxy to Home Assistant Scraper
FROM alpine:latest
RUN apk add --update --no-cache ruby -y
ADD scraper.rb .
CMD ["ruby", "scraper.rb"]