This repository has been archived by the owner on Apr 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
195 lines (134 loc) · 5.48 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
ChangeLog:
1.8.5
* Repair and optimize the database with: wpdb -r|-o
* Reinstall all wordpress files in current and sub folders with:
wpcore --all
- Fixed the quick scans to get all the .php files.
- More scan strings
1.8.3.1
* wpscan: Added new command 'rquick' to recursively scan
all WP installs below the current directory. Also scans
for .php5 and other uncommon php files.
* New paste-into-shell script to create code to paste directly
into a shell/terminal, as an alternitive to downloading.
- More scan strings
1.8.3
* On wpcore reinstall of core files, check for hacked files.
- wplogin: do not redirect after login, as can only
work on versions of WP after 3.5.
- More scan strings.
1.8.2
- Reformatting of help pages
1.8.1
* 'wplogin' gives a quick link to access the site as an admin user.
No more searching for user ids, just run and click.
It is simply uses 'wpuser # -l' with the first admin it finds.
* 'wpplug disable-all' will disable all plugins in the database
so you can quickly see if the issue is a plugin issue, and
'wpplug restore-all' will restore them exactly how they were.
* 'wpdb -s' shows the number of rows and size of each table, and
'wpdb' now shows database size and number of tables
* 'wpfix' now clears WP Super Cache files
* 'wptool changes/man' show the changelog and readme
from within the terminal.
* 'wpfix perms' fixes file permissions. Basic setup as of now.
* 'wpplug disable <plugin>' will disable a specific plugin
from within in the database.
- Fixed wpuser's access link to work with sites whos
files are in a sub directory but the site is using
the regurlar path, for example:
home: http://domain.com, but siteurl: http://domain.com/files
- Improvements on database and status messages.
- Detect if we should use php-cli or php for running code.
- Some redoing and rethinking of the changes page.
1.8.0
* 'wpscan' is a new tool that does basic malware scanning
* 'wpcore new' can install wp
After install, go to the site in the browser
to configure database and set main user
- Improved wpuser access links
- Fixes in php file
- Removes even on Ctrl+C
- Handles subdir installs
- Better documentation and Readme file
- Verify zip files are downloaded properly
- made wget work on older systems
that don't have w.org's root cert
1.7.5.1
* 'wpbackup' and 'wprestore' and quick functions allow one to
backup/restore the database and wp-content files.
* 'wpfix' now clears W3 Total Cache's files too.
- make __wp_rand_string function more robust and workable.
It's now used in more places for better security.
- wpurl now asks user for confirmation on search and replace
- wpuser shows "only showing first 23 users" so we remember that.
- Some reformatting and better suggestions.
1.7.5
* 'wpurl OLD NEW' is a new option allows you to search and replace
urls in the posts table. This is usually for fixing up
pic urls on site moves.
* 'wptrace' is a new tool that shows a trace of what WP is doing.
This can help with wsod or odd errors.
* We now show recent big changes (during the last 3 weeks) on load.
- Added License file.
- Fixes to the access link (wpuser # -l) to work on sub directories,
not show two '//' (for real this time), and only warn if
user not found (but go ahead and make the link anyways).
- dbconn was saying 'invalid query' when it really meant "bad argument'
1.7.4
* 'wpuser' now has options to list all users, and admins.
- check if access link exists before removing
1.7.3
* 'wperr' is a new tool that shows a tail of WP's error logs.
1.7.1.4
* 'wpuser # -l' is a new option that adds the ability to login
as any user using a given link. It does this by creating a link
that asks WP for the cookies of the given user, and then loads
them into the browser. Yet all the user is doing is specifying
the user id, and then clicking the link. It automatically logs
into the WP Dashboard. No more 'deleteme'!
1.7.1.3
* 'wpuser -n' now creates a random password for deleteme creation.
No more having to redo the password, (or forgetting about it).
- Created readme file.
1.7.1.2
- Updated to https.
1.7.1.1
- Added email to deleteme user. Also added a notice to
delete/rename said user.
- Removed antiquated function from wpfix.
- Simplified wpht processing, and copied instead of moved
old .htaccess so as to preserve other rules.
1.6.8
- Updated obscure single quote bug.
- Simplified default version output.
- Made it clear that "No WP files found" wasn't an error.
- Updated doc for wpcore and wpver.
1.6.7
- Cleaned up wpver, as well as updating wpcore to download
based on db version instead of file version.
- Clean up injection line.
- Cosmetic changes to info page.
1.6.6
- Made it easier to update the version number.
- More robust error-catching. Also, it's better to only create
a folder when needed as opposed to deleting it if empty.
- Minor readability cleanup.
- Check for wpcore cur before going to default.
- Added is_empty.
1.6.5
- Updates to wpcore.
- Use require_once() instead of require()
1.6.1
- Ignore chars when sorting database params,
as some servers have different defaults.
1.6
- Enabled database dropping.
- Added simple undocumented database drop feature.
- Enabled gzip import/export of database.
- Filtered out lines starting with a slash (comments), and sorted matches
- Cleaned up database detail parsing.
- Cosmetics; also restoring return codes.
- Fixed export with no name specifiedm
1.5
- Added wptool