#2 way hackers hack WordPress - Disable XMLRPC in WordPress

#2 way hackers hack WordPress - Disable XMLRPC in WordPress

WordPress Tutorials - WPLearningLab

5 месяцев назад

2,206 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@tadeoclonado67
@tadeoclonado67 - 10.04.2024 20:49

Hello...I believe that this video is not properly listed in your channel...

Ответить
@marianadegraftdickson2586
@marianadegraftdickson2586 - 11.04.2024 02:05

Hi, It's okey to disable from the .htaccess and with plugin too, is doble effective of it doesn't matter.

Ответить
@j8o437nqcr7b
@j8o437nqcr7b - 19.04.2024 13:21

Hey Bjorn. Why is your video unlisted? Anyway, I took a look at my logs and found out that most of the attacks are xmlrpc based on one of my websites. Over 560 log reports and majority is xmlrpc related. After switching my log in page and getting blackhole for bad bots as stated in your other video. I then shut them down using this method. Already i can say that with the hiding of the log in page I've seen a decrease in login attempts. Will give feedback after getting enough data on disabling the xlmrpc file. Thanks again for the video

Ответить
@chiefdar8411
@chiefdar8411 - 01.05.2024 16:05

I got a notification now 😮😢why?

Ответить
@randbaldwin
@randbaldwin - 01.05.2024 16:58

Early in the video I saw you had Wordfence. Why did you edit the htaccess file to disable xmlrpc instead of just choosing the setting in Wordfence to disable it?

Ответить
@Simulacra001
@Simulacra001 - 01.05.2024 18:40

For those who would rather do this via their child themes functions.php:

remove_action ('wp_head', 'rsd_link');
add_filter('xmlrpc_enabled', '__return_false');

Ответить
@visualmodo
@visualmodo - 06.05.2024 03:20

Thanks for your video!

Ответить
@sethmillz
@sethmillz - 07.05.2024 17:25

Thanks for this

Ответить
@osvaldowesly9993
@osvaldowesly9993 - 15.05.2024 00:38

Outstanding and excellent educational video Bjorn. All of your tutorial videos are truly outstanding.

Ответить
@raghavgakhar09
@raghavgakhar09 - 08.07.2024 16:09

where is that code to disable xml rpc? I checked all comments, didn't find.

Ответить
@raghavgakhar09
@raghavgakhar09 - 08.07.2024 16:31

hi, need your help -- I added this code in htaccess.. nd it says "forbidden to access htaccess"

Ответить
@wplearninglab
@wplearninglab - 15.07.2024 21:23

# BEGIN Disable XML-RPC.PHP

<Files xmlrpc.php>
Order Deny,Allow
Deny from all
</Files>
# END Disable XML-RPC.PHP

Ответить