Skip to content

Commit 6f795a1

Browse files
committedApr 1, 2020
Try to make README.md git preview nicer.
1 parent 5857df9 commit 6f795a1

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed
 

‎README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ If PostgreSQL has not been installed yet, it needs to be done before running. Th
1818
After PostgreSQL has been installed, it is necessary to create a database that will be used by the tool. For compatibility with pleak-backend, the database name should be 'ga_propagation'. Permissions on 'ga_propagation' should be given to the user 'ga_propagation', whose password is the same as used inside "pleak-tools/pleak-backend/src/main/java/com/naples/rest/GuessingAdvantageService.java", which is 'ceec4eif7ya' by default. If any other database or user names are used, they should be changed in "GuessingAdvantageService.java" as well. Here is an example of how to do it with Ubuntu system:
1919

2020
1. Create the ga_propagation user.
21-
21+
```
2222
USERNAME@xxxx:~$ sudo -u postgres -i
2323
(prompts USERNAME's password)
2424
postgres@xxxx:~$ createuser --interactive --pwprompt
@@ -28,9 +28,9 @@ After PostgreSQL has been installed, it is necessary to create a database that w
2828
Shall the new role be a superuser? (y/n) n
2929
Shall the new role be allowed to create databases? (y/n) n
3030
Shall the new role be allowed to create more new roles? (y/n) n
31-
31+
```
3232
2. Create the ga_propagation database.
33-
33+
```
3434
postgres@xxxx:~$ psql
3535
postgres=# create database ga_propagation;
3636
CREATE DATABASE
@@ -42,8 +42,10 @@ After PostgreSQL has been installed, it is necessary to create a database that w
4242
ga_propagation=# create extension earthdistance;
4343
CREATE EXTENSION
4444
ga_propagation=# \q
45-
45+
```
4646
The tool assumes that the contents of input tables are uploaded to the database by some other application. The example runs will fail if there is no suitable data, i.e. no tables specified in the input schema file.
4747

48-
Example run: ./dist/build/sql-constraint-propagation/sql-constraint-propagation --connection "host=localhost dbname=ga_propagation user=ga_propagation password=ceec4eif7ya" --leak-mode if-exists -o output.att src/psql/cat_group_query.sql src/psql/cat_attacker.att src/psql/cat_input_schema.sql src/psql/cat_group_output_schema.sql
49-
48+
## Example run:
49+
```
50+
./dist/build/sql-constraint-propagation/sql-constraint-propagation --connection "host=localhost dbname=ga_propagation user=ga_propagation password=ceec4eif7ya" --leak-mode if-exists -o output.att src/psql/cat_group_query.sql src/psql/cat_attacker.att src/psql/cat_input_schema.sql src/psql/cat_group_output_schema.sql
51+
```

0 commit comments

Comments
 (0)
Please sign in to comment.