This guide explain how to create all the required certificates to enable SSL client authentication and revogation of certificates
Attention: I suppose that you already know how to generate a Self-Signed certificate for Root CA!
[ ca ]
This guide explain how to create all the required certificates to enable SSL client authentication and revogation of certificates
Attention: I suppose that you already know how to generate a Self-Signed certificate for Root CA!
[ ca ]
-- Drop Message Reports Data | |
truncate table OSB1213_SOAINFRA.WLI_QS_REPORT_DATA; | |
alter table OSB1213_SOAINFRA.WLI_QS_REPORT_DATA DISABLE constraint FK_WLI_QS_REPORT_DATA; | |
truncate table OSB1213_SOAINFRA.WLI_QS_REPORT_ATTRIBUTE; | |
alter table OSB1213_SOAINFRA.WLI_QS_REPORT_DATA ENABLE constraint FK_WLI_QS_REPORT_DATA; | |
-- Create Message Report Index | |
create index OSB1213_SOAINFRA.IDX$$_36870001 on | |
OSB1213_SOAINFRA.WLI_QS_REPORT_ATTRIBUTE("DB_TIMESTAMP","MSG_GUID"); | |
Student ID: IoTE-775
This Blog/Gist will be very detailed with a lot of additional listings to see the process and methodology of Examination.
In this gist I will try to examine and exploit the Sricam SP009. I purchased it from Attify with the IOT Exploitation Kit.
This is a tutorial to realize following video: https://www.youtube.com/watch?v=PBiOGvJRPqg
if your ps3 controller just vibrates when connecting to the retropie, or when your ps3 controller does not connect via bluetooth, this writedown might help you.
Since no exact description did work for me, I decided to write it down, what I did based on other descriptions, in order to get it to work.
FROM ubuntu:14.04 | |
# Replace 1000 with your user / group id | |
RUN export uid=1000 gid=1000 && \ | |
mkdir -p /home/developer && \ | |
echo "developer:x:${uid}:${gid}:Developer,,,:/home/developer:/bin/bash" >> /etc/passwd && \ | |
echo "developer:x:${uid}:" >> /etc/group && \ | |
echo "developer ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/developer && \ | |
chmod 0440 /etc/sudoers.d/developer && \ | |
chown ${uid}:${gid} -R /home/developer |
#!/bin/bash | |
dire=`echo $1 | sed -e 's@[^/]@@g'` | |
numb=`expr ${#dire} + 1` | |
find $* | cut -d / -f $numb |