Public Access
extractor erstmal fertig
- er findet fast alle tabellen - quellcode wird entpackt wenn er in einer variable ist
This commit is contained in:
+4
-4
@@ -19,7 +19,7 @@
|
||||
"*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new]))",
|
||||
"code": "(Transaction().connection.cursor()).execute(*sqltable.update(\n columns=[sqltable.password_hash],\n values=[password_hash_new]))",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
@@ -35,7 +35,7 @@
|
||||
"columns": "[sqltable.password_hash]",
|
||||
"values": "[password_hash_new]"
|
||||
},
|
||||
"code": "sqltable.update(columns=[sqltable.password_hash], values=[password_hash_new])",
|
||||
"code": "sqltable.update(\n columns=[sqltable.password_hash],\n values=[password_hash_new])",
|
||||
"phase": "after_super",
|
||||
"condition": "table.column_exist('password') and table.column_exist('salt')"
|
||||
},
|
||||
@@ -96,7 +96,7 @@
|
||||
"*model_data.update([model_data.noupdate], [True], where=(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin'))"
|
||||
],
|
||||
"kwargs": {},
|
||||
"code": "cursor.execute(*model_data.update([model_data.noupdate], [True], where=(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin')))",
|
||||
"code": "(Transaction().connection.cursor()).execute(*model_data.update(\n [model_data.noupdate], [True],\n where=(model_data.model == cls.__name__)\n & (model_data.module == 'res')\n & (model_data.fs_id == 'user_admin')))",
|
||||
"phase": "after_super"
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@
|
||||
"kwargs": {
|
||||
"where": "(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin')"
|
||||
},
|
||||
"code": "model_data.update([model_data.noupdate], [True], where=(model_data.model == cls.__name__) & (model_data.module == 'res') & (model_data.fs_id == 'user_admin'))",
|
||||
"code": "model_data.update(\n [model_data.noupdate], [True],\n where=(model_data.model == cls.__name__)\n & (model_data.module == 'res')\n & (model_data.fs_id == 'user_admin'))",
|
||||
"phase": "after_super"
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user