One trick is to copy and move the file back in place.
Beware of the ownership and mode of the file or it will break your system in a more severe way.
As an example here's fstab in the wrong timestamp:
$ stat /etc/fstab
File: '/etc/fstab'
Size: 37 Blocks: 8 IO Block: 4096 regular file
Device: b30ah/45834d Inode: 504 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/ user) Gid: ( 0/ user)
Access: 2105-12-20 17:23:10.624000001 +0000
Modify: 2018-07-31 00:29:37.000000000 +0000
Change: 2020-01-21 08:58:48.779991299 +0000
Birth: -
$ sudo cp /etc/fstab /etc/fstab_ --preserve=ownership --preserve=mode
$ sudo mv /etc/fstab_ /etc/fstab
$ stat /etc/fstab
File: '/etc/fstab'
Size: 37 Blocks: 8 IO Block: 4096 regular file
Device: b30ah/45834d Inode: 1534 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 1000/ user) Gid: ( 1000/ user)
Access: 2020-02-06 16:52:33.684297747 +0000
Modify: 2020-02-06 16:52:33.684297747 +0000
Change: 2020-02-06 16:52:43.093550721 +0000
Birth: -
$
Within a 2 liner command set this would be:
$ sudo find / -type f -newermt 2020-02-07 -exec cp {} {}_ --preserve=ownership -preserve=mode \;
Then find the copied files and move them back into position
$ sudo find / -type f -iname "*_" -exec mv {}_ {} \;
You can check the dates with following command:
$ sudo find / -type f -newermt 2020-02-07
Note: As a trailing character i've chosen "_", please adapt to your needs to avoid any conflicts in your file system.