I hereby claim:
- I am alterakey on github.
- I am alterakey (https://keybase.io/alterakey) on keybase.
- I have a public key whose fingerprint is A37E BB9A AF1D 8BC3 942E 8ABF 3FBC 81F4 1EFC BBED
To claim this, I am signing this object:
from ubuntu:23.04 | |
run apt-get -y update | |
run apt-get install -y python3-pip python3-venv | |
run python3 -m venv /app/.v && /app/.v/bin/pip install pyside6 | |
run (cd /app && ln -sfn .v/bin/pyside6-* .) | |
from ubuntu:23.04 | |
run apt-get -y update | |
run apt-get install -y python3 libglib2.0-0 libdouble-conversion3 | |
run apt-get clean && rm -rf /var/cache/apt/lists |
from python:3.9-slim | |
run apt-get update -y && apt-get install -y git | |
run git clone https://github.com/jakev/pyxamstore.git build && (cd build && python ./setup.py install) && rm -rf build | |
run mkdir /out | |
workdir /out | |
entrypoint ["/usr/local/bin/pyxamstore"] |
from python:3-alpine | |
maintainer Takahiro Yoshimura <[email protected]> | |
run mkdir /out && pip3 install jsbeautifier | |
workdir /out | |
entrypoint ["js-beautify"] |
from ocaml/opam | |
run sudo apt-get -y install m4 | |
run . ~/.opam/opam-init/init.sh && cd /tmp && curl https://bblanche.gitlabpages.inria.fr/proverif/proverif2.04.tar.gz | gzip -dc | tar -x && cd proverif2.04 && ./build; ./test | |
from debian:11-slim | |
run mkdir /app /out | |
copy --from=0 /tmp/proverif2.04/proverif /app/ | |
workdir /out | |
entrypoint ["/app/proverif"] |
# Trueseeing extension for analyzing Beijin Olympic Winter Games 2022 Android app by alterakey | |
# This file is in public domain. | |
# | |
# Place this file as ~/.trueseeing2/ext/__init__.py, and invoke trueseeing on the target. | |
from __future__ import annotations | |
from typing import TYPE_CHECKING | |
import glob | |
import re | |
import os.path |
I hereby claim:
To claim this, I am signing this object:
# An Android 6.0-compatible SHA1PRNG implementation | |
# Copyright 2017 Takahiro Yoshimura <[email protected]> | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software |
/* LocalCursors.java: Parcelable Serializer | |
* Copyright (C) 2015 Takahiro Yoshimura <altakey@gmail.com>. All rights reserved. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
#!/bin/bash | |
export GOPATH=$(pwd) | |
export PATH=$GOPATH/bin:$PATH |
# grab.py: fairly robust APK grabber for Android | |
# Copyright (C) 2015-2016 Takahiro Yoshimura <[email protected]>. All rights reserved. | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# |