mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
1379ef705a
AIL is a modular framework to analyse potential information leak from unstructured data source like pastes from Past ebin or similar services. AIL framework is flexible and can be extended to support other functionalities to mine sen sitive information
36 lines
983 B
Bash
Executable file
36 lines
983 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
wget http://dygraphs.com/dygraph-combined.js -O ./static/js/dygraph-combined.js
|
|
|
|
SBADMIN_VERSION=2
|
|
filename="sb-admin-${SBADMIN_VERSION}"
|
|
|
|
rm -rf temp
|
|
mkdir temp
|
|
|
|
wget http://startbootstrap.com/downloads/${filename}".zip" -O temp/${filename}".zip"
|
|
|
|
unzip temp/${filename}".zip" -d temp/
|
|
|
|
JQVERSION="1.11.1"
|
|
wget http://code.jquery.com/jquery-${JQVERSION}.js -O ./static/js/jquery.js
|
|
|
|
wget https://collabdev.googlecode.com/svn-history/r5/trunk/static/js/jquery.timers-1.0.0.js -O ./static/js/jquery.timers-1.0.0.js
|
|
|
|
#Here to fix an error about an hard dependency in a obscur script of bootstrap..
|
|
wget http://code.jquery.com/jquery-1.4.2.js -O ./static/js/jquery-1.4.2.js
|
|
|
|
rm -rf ./static/js/plugins
|
|
mv temp/${filename}/js/* ./static/js/
|
|
|
|
rm -rf ./static/fonts/ ./static/font-awesome-4.1.0/
|
|
|
|
mv temp/${filename}/fonts/ ./static/
|
|
mv temp/${filename}/font-awesome-4.1.0/ ./static/
|
|
|
|
rm -rf ./static/css/plugins/
|
|
mv temp/${filename}/css/* ./static/css/
|
|
|
|
rm -rf temp/
|