yokima
Forum Replies Created
-
@erickbeam: where is the plugin? I can’t find anything at https://www.google.com/search?q=%22Sort+by+Comment%22+prologue+plugin
erikbeam: that’s amazing. would you share the modified plugin? i would so use it right away.
monodistortion: i think people using it would be satisfied with 1) akismet would be good enough filtering out spam, so apply the hook after any anti-spam plugins have taken action. manual moderation would be irrelevant. 2) the post could just stay with the same timestamp after a comment was deleted, which would be a minor glitch that I wouldn’t mind withstanding.
this incident looks similar to what’s being discussed on this thread: https://mashable.com/2009/09/05/wordpress-attack/ maybe it’s the same issue?
whooami Centos 5.3 (VPS env)
danceadvantage: here, have a screenshot: https://www.flickr.com/photos/yonghokim/3777646797/sizes/o/
Forum: Fixing WordPress
In reply to: p2 // wysiwyg functionality to the “post-form?”no need to wait for server response; ain’t that cool
Forum: Fixing WordPress
In reply to: p2 // wysiwyg functionality to the “post-form?”it’s fast – that was the point of p2
williscreative: did you use vi or some other editor to edit vars.php? Then there may be blank lines or spaces before or after <?php and ?>.
If you uploaded them via FTP, check the permissions – on my server they are set to 644
scottop: Thanks. I found the below to be affected using grep:
./wp-content/plugins/tantan-reports/tantan_reports.php
./wp-content/plugins/tantan-flickr/flickr.php
./wp-content/plugins/breadcrumb.php
./wp-content/plugins/stats/stats.php
./wp-content/plugins/tantan-spam/plugin.php
./wp-content/plugins/search_pages.php
./wp-content/plugins/wp-db-backup/wp-db-backup.php
./wp-content/plugins/breadcrumb-navigation-xt/breadcrumb-navigation-xt.php
./wp-content/plugins/prevent-browse-happy.php
./wp-content/plugins/one-click-plugin-updater/oneclick-plugin-updater.php
./wp-content/plugins/akismet/akismet.php
./wp-content/plugins/audio-player.php
./wp-content/plugins/attachment-manager/wp-attachment-manager.php
./wp-content/plugins/wordpress-automatic-upgrade/wordpress-automatic-upgrade.php
./wp-content/plugins/countposts-v-10-wordpress-plugin/CountPosts.phpThe below seem to have gzinflate as part of their regular code (but check just in case)
./wp-content/plugins/one-click-plugin-updater/pclzip.lib.php
./wp-content/plugins/wordpress-automatic-upgrade/lib/pclzip.lib.php
./wp-includes/js/tinymce/plugins/spellchecker/classes/HttpClient.class.php
./wp-admin/includes/class-pclzip.phptstalcup yes! that worked for me! Everyone: I obtained the 2.7 version vars.php from https://svn.automattic.com/wordpress/branches/2.7/wp-includes/vars.php – replace the 2.7 there with your version number and replace the file with the one in your wordpress installation. if you open the current vars.php, you will see there is a huge chunk of hashed text that starts with
eval (gzinflate(base64_decode(^M
The clean vars.php is supposed to start right off with
<?php
/**
* Creates common globals for the rest of WordPressBut, just in case there’s more code stuck in between, you may want to overwrite the file instead of manually removing it.
Forum: Fixing WordPress
In reply to: p2 // wysiwyg functionality to the “post-form?”it seems that p2 creates a post edit form for every post loaded on the front page, and hitting “edit” simply turns that CSS layer from display:none; to display:block;
Therefore, if you display 10 posts per page, and had TinyMCE enabled, there would be 10 instances of TinyMCE running at the same time for every page when logged in as admin.. maybe their keyboard shortcuts will also compete amongst each other and with p2’s built-in shortcuts for keyboard attention
kmessinger: Yes, it shows our domain name. So if our domain was google.com, it would say “The server google.com at Magic”. And no, we have no relationship with anything called Magic. Our host is RimuHosting.
I skimmed over wp-login.php which is a long file and coulnd’t find anything alarming. I ran a diff of wp-login against https://svn.automattic.com/wordpress/branches/2.7/wp-login.php and it was exactly the same. Did you mean wp-config or wp-settings? Nothing on wp-config; as for wp-setttings there’s this stuff
set_magic_quotes_runtime(0);
@ini_set(‘magic_quotes_sybase’, 0);but it’s just standard WordPress code as far as I’m concerned
EMG: if the trojan had our root password, why would it phish for more? it could test out its password at the WordPress install and if it works there would be no need to reveal yourself.
Forum: Fixing WordPress
In reply to: Sidebar and footer do not get includedI think the lack of the below code at the beginning in sidebar and footer created the problem, although I have some suspicion that there were more elements to this problem. Look at the latest kubrick theme
<?php
/**
* @package WordPress
* @subpackage Default_Theme
*/
?>the code above does not solve the problem. I would need something like &category=1+2 or &category:1&2